Skip to content

Release version 1.3.3.19 #431

Release version 1.3.3.19

Release version 1.3.3.19 #431

Workflow file for this run

name: Blocked Issue Labeler
on:
issues:
types:
- opened
- edited
issue_comment:
types:
- created
- edited
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
add-blocked-label:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Add blocked label if issue is blocked
run: |
body=$BODY
comment=$COMMENT
issue_number=${{ github.event.issue.number }}
# if body contains "blocked" or comment contains "blocked"
# add label "blocked"
if [[ "${body,,}" == *"blocked"* ]] || [[ "${comment,,}" == *"blocked"* ]]; then
echo "Issue is blocked"
echo "Adding blocked label"
gh issue edit $issue_number --add-label blocked
fi
env:
BODY: ${{ github.event.issue.body }}
COMMENT: ${{ github.event.comment.body }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}