fix: correct suffix in labels (#8) #3
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
# This workflow is used to declaratively sync labels. | |
# It is supposed to be run on push to main. | |
name: Sync labels | |
on: | |
push: | |
branches: | |
- main | |
permissions: write-all | |
jobs: | |
sync: | |
name: Sync labels | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shanduur/declarative-labels-sync-action@main | |
with: | |
owner: linode | |
repository: ${{ github.event.repository.name }} | |
token: ${{ secrets.GITHUB_TOKEN }} |