Skip to content

⬆ Bump the github-actions group across 1 directory with 6 updates #520

⬆ Bump the github-actions group across 1 directory with 6 updates

⬆ Bump the github-actions group across 1 directory with 6 updates #520

Workflow file for this run

name: Labels
on:
pull_request_target: # zizmor: ignore[dangerous-triggers]
types:
- opened
- synchronize
- reopened
# For label-checker
- labeled
- unlabeled
jobs:
labeler:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6
if: ${{ github.event.action != 'labeled' && github.event.action != 'unlabeled' }}
- run: echo "Done adding labels"
# Run this after labeler applied labels
check-labels:
permissions:
pull-requests: read
needs:
- labeler
runs-on: ubuntu-latest
steps:
- uses: docker://agilepathway/pull-request-label-checker:latest
with:
one_of: breaking,security,feature,bug,refactor,upgrade,docs,internal
repo_token: ${{ secrets.GITHUB_TOKEN }}