12345678910111213141516171819202122232425262728293031323334353637383940 |
- name: Issue Unlabeled
- on:
- issues:
- types: [unlabeled]
- permissions:
- contents: read
- jobs:
- issue-unlabeled-blocked:
- name: All blocked/* labels removed
- if: startsWith(github.event.label.name, 'blocked/')
- runs-on: ubuntu-latest
- steps:
- - name: Check for any blocked labels
- id: check-for-blocked-labels
- run: |
- set -eo pipefail
- BLOCKED_LABEL_COUNT=$(echo '${{ toJSON(github.event.issue.labels.*.name) }}' | jq '[ .[] | select(startswith("blocked/")) ] | length')
- if [[ $BLOCKED_LABEL_COUNT -eq 0 ]]; then
- echo "NOT_BLOCKED=1" >> "$GITHUB_OUTPUT"
- fi
- - name: Generate GitHub App token
- if: ${{ steps.check-for-blocked-labels.outputs.NOT_BLOCKED }}
- uses: electron/github-app-auth-action@cc6751b3b5e4edc5b9a4ad0a021ac455653b6dc8 # v1.0.0
- id: generate-token
- with:
- creds: ${{ secrets.ISSUE_TRIAGE_GH_APP_CREDS }}
- org: electron
- - name: Set status
- if: ${{ steps.check-for-blocked-labels.outputs.NOT_BLOCKED }}
- uses: github/update-project-action@2d475e08804f11f4022df7e21f5816531e97cb64 # v2
- with:
- github_token: ${{ steps.generate-token.outputs.token }}
- organization: electron
- project_number: 90
- content_id: ${{ github.event.issue.node_id }}
- field: Status
- value: 📥 Was Blocked
|