feat: kotlin 기반 spring boot 프로젝트 버전 bump 지원 #28
Workflow file for this run
This file contains hidden or 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 GitHub Labels" | |
| permissions: | |
| issues: write | |
| on: | |
| push: | |
| paths: | |
| - .github/labels/issue-label.yml | |
| - .github/workflows/sync-issue-labels.yaml | |
| jobs: | |
| label-sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Sync labels from config | |
| uses: crazy-max/ghaction-github-labeler@v5 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| yaml-file: .github/labels/issue-label.yml |