We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9e548 commit b88d9c6Copy full SHA for b88d9c6
1 file changed
.github/workflows/release-patch-from-comment.yml
@@ -42,7 +42,7 @@ jobs:
42
43
- name: 'Get PR Status'
44
id: 'pr_status'
45
- if: "steps.slash_command.outputs.dispatched == 'true'"
+ if: "startsWith(github.event.comment.body, '/patch')"
46
env:
47
GH_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
48
run: |
@@ -71,7 +71,7 @@ jobs:
71
})
72
73
- name: 'Comment on Failure'
74
- if: "steps.slash_command.outputs.dispatched == 'true' && steps.pr_status.outputs.STATE != 'MERGED'"
+ if: "startsWith(github.event.comment.body, '/patch') && steps.pr_status.outputs.STATE != 'MERGED'"
75
uses: 'peter-evans/create-or-update-comment@67dcc547d311b736a8e6c5c236542148a47adc3d'
76
with:
77
issue-number: '${{ github.event.issue.number }}'
0 commit comments