Label sync #1493
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
name: Label sync | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- '.github/labels.yml' | |
jobs: | |
label-sync: | |
name: Label sync | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Label sync | |
uses: crazy-max/ghaction-github-labeler@v4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |