We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 994d34d commit 8579536Copy full SHA for 8579536
1 file changed
.github/workflows/validate.yaml
@@ -1,18 +1,20 @@
1
name: 'PR Review Comment'
2
3
on:
4
- pull_request_review_thread:
+ issue_comment:
5
types: [created]
6
7
jobs:
8
- upload_payload:
9
- name: Upload payload
+ deploy:
10
runs-on: ubuntu-latest
+ if: github.event.issue.pull_request && contains(github.event.comment.body, '/deploy')
11
steps:
12
- - uses: actions/upload-artifact@v3
13
- with:
14
- name: payload
15
- path: ${{ github.event_path }}
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Deploy
16
+ run: |
17
+ echo "Deploying..."
18
19
# name: Validate and Run Commands Based on PR Labels
20
0 commit comments