Skip to content

build: copier-auto-update #12

build: copier-auto-update

build: copier-auto-update #12

Workflow file for this run

---
# 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