We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e8e98 commit c26afbeCopy full SHA for c26afbe
.github/workflows/ci.yml
@@ -21,7 +21,9 @@ on:
21
jobs:
22
pr-ci:
23
name: CI
24
- if: github.event_name == 'pull_request' && github.event.action != 'closed'
+ if: >-
25
+ (github.event_name == 'pull_request' && github.event.action != 'closed') ||
26
+ (github.event_name == 'issue_comment' && startsWith(github.event.comment.body, '!redeploy'))
27
uses: access-nri/build-cd/.github/workflows/ci.yml@v3
28
with:
29
model: ${{ vars.NAME }}
0 commit comments