You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+65Lines changed: 65 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,12 @@ inputs:
18
18
simulated_merge_type:
19
19
description: 'When running in a pull request, what type of merge to simulate to run the tool in test mode. Note: This input option is planned to go away in favor of reading github repo settings. Options: merge, squash, rebase.'
20
20
default: 'merge'# options: merge, squash, rebase
21
+
pull_request_comment_body:
22
+
description: 'The comment body to use when creating a pull request comment. This content is in markdown and can contain some variables. See: https://github.com/peter-evans/create-or-update-comment?tab=readme-ov-file#using-a-markdown-template'
23
+
default: ''
24
+
make_pull_request_comment:
25
+
description: 'If a pull request comment should be made. Value is string values "true" or "false".'
26
+
default: 'true'
21
27
22
28
outputs:
23
29
new_release_version:
@@ -39,6 +45,28 @@ runs:
39
45
run: git fetch
40
46
shell: bash
41
47
48
+
- name: Find pull request comment previously created, if there is one.
Running deployment...refresh webpage to see results when done.
68
+
edit-mode: replace
69
+
42
70
- name: Run deployment tool
43
71
# Deno's runtime permissions are a great feature. It would be nice to take advantage of it, however, it may not be possible with future features like running plugins.
There was a failure when running the deployment. Check [the logs](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}) to see what went wrong.
92
+
edit-mode: replace
93
+
94
+
- name: Pull request comment if there will be a release
0 commit comments