github_bot_커밋_메시지_개선 : feat : buildEntry 메서드 반환값 수정 https://github.co… #12
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 |