Skip to content

Label Sync

Label Sync #782

Workflow file for this run

name: Label Sync
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
push:
branches:
- master
paths:
- '.github/labels.yml'
- '.github/workflows/label-sync.yml'
pull_request:
paths:
- '.github/labels.yml'
- '.github/workflows/label-sync.yml'
permissions:
contents: read
issues: write
jobs:
labeler:
name: Labeler
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Label Sync
uses: crazy-max/ghaction-github-labeler@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
yaml-file: .github/labels.yml
dry-run: ${{ github.event_name == 'pull_request' }}