-
Notifications
You must be signed in to change notification settings - Fork 432
41 lines (37 loc) · 1.14 KB
/
label-deploy-failed.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Auto label failed preview deploys
permissions:
pull-requests: write
on:
issue_comment:
types:
- created
- edited
jobs:
auto-label-deploy-failed:
runs-on: ubuntu-latest
if: |
github.repository == 'ohcnetwork/care_fe' && github.event.issue.pull_request &&
contains(github.event.comment.body, 'Deploy Preview')
steps:
- name: Add 'Deploy-Failed'
if: contains(github.event.comment.body, 'failed')
uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["Deploy-Failed"]
})
- name: Remove 'Deploy-Failed' label
if: contains(github.event.comment.body, 'ready')
uses: actions/github-script@v6
with:
script: |
github.rest.issues.removeLabel({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["Deploy-Failed"]
})