Skip to content

Replace useDispatch with useQuery in Asset Management, Location Management, Facility Cover Image Popup, Doctor Capacity and Triage #27346

Replace useDispatch with useQuery in Asset Management, Location Management, Facility Cover Image Popup, Doctor Capacity and Triage

Replace useDispatch with useQuery in Asset Management, Location Management, Facility Cover Image Popup, Doctor Capacity and Triage #27346

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 == 'coronasafe/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"]
})