Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.

Merge pull request #257 from artichoke/dependabot/github_actions/gha-… #277

Merge pull request #257 from artichoke/dependabot/github_actions/gha-…

Merge pull request #257 from artichoke/dependabot/github_actions/gha-… #277

Workflow file for this run

---
"on":
push:
branches:
- trunk
paths:
- .github/labels.yaml
- .github/workflows/repo-labels.yaml
pull_request:
branches:
- trunk
paths:
- .github/labels.yaml
- .github/workflows/repo-labels.yaml
schedule:
- cron: "0 0 * * TUE"
name: Create Repository Labels
permissions: {}
jobs:
labels:
name: Synchronize repository labels
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Sync GitHub Issue Labels
uses: crazy-max/ghaction-github-labeler@24d110aa46a59976b8a7f35518cb7f14f434c916 # v5.3.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yaml
skip-delete: false
dry-run: ${{ github.ref != 'refs/heads/trunk' }}