Skip to content

Sync Labels

Sync Labels #244

Workflow file for this run

name: Sync Labels
on:
workflow_call:
push:
branches:
- master
paths:
- .github/workflows/sync-labels.yml
- .github/labels.yml
schedule:
- cron: '0 0 * * 4'
jobs:
sync_labels:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Run Labeler
if: success()
uses: crazy-max/[email protected]
with:
yaml-file: .github/labels.yml
skip-delete: false
dry-run: false
github-token: ${{ secrets.GITHUB_TOKEN }}