Skip to content

Commit c26afbe

Browse files
committed
Updated to include trigger for redeploy comment command
1 parent f7e8e98 commit c26afbe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ on:
2121
jobs:
2222
pr-ci:
2323
name: CI
24-
if: github.event_name == 'pull_request' && github.event.action != 'closed'
24+
if: >-
25+
(github.event_name == 'pull_request' && github.event.action != 'closed') ||
26+
(github.event_name == 'issue_comment' && startsWith(github.event.comment.body, '!redeploy'))
2527
uses: access-nri/build-cd/.github/workflows/ci.yml@v3
2628
with:
2729
model: ${{ vars.NAME }}

0 commit comments

Comments
 (0)