Update PR template #5
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: Sync Labels | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- ".github/**" | |
# This ensures that previous jobs for the workflow are canceled when the ref is | |
# updated. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
labels: | |
runs-on: ubuntu-latest | |
name: Sync labels | |
steps: | |
- name: sync labels | |
uses: abhi1693/labels@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |