action.yml 프로젝트 경로 변경 및 docs 파일 수정 #16
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 |