build: copier-auto-update #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# Docs: https://github.com/marketplace/actions/github-labeler | |
name: github_labeler | |
# Will only be run each push or PR merge to the main branch | |
"on": | |
push: | |
branches: [main] | |
paths: [.github/labels.yml, .github/workflows/labeler.yml] | |
workflow_dispatch: null # For manual runs | |
jobs: | |
labeler: | |
runs-on: ubuntu-latest | |
permissions: | |
# Issues and related comments, assignees, labels, and milestones. | |
contents: read | |
issues: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Labeler | |
uses: crazy-max/ghaction-github-labeler@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
yaml-file: .github/labels.yml | |
skip-delete: false | |
dry-run: false |