[feat] 404페이지 추가 #2
Workflow file for this run
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: Issue PR Labeler | |
on: | |
issues: # 이슈가 생성되고 수정될 때 | |
types: | |
- opened | |
- edited | |
pull_request: # PR이 생성되거나 다시 열릴 때 | |
types: | |
- opened | |
- reopened | |
jobs: | |
main: | |
runs-on: ubuntu-latest # 우분투 최신 버전 환경에서 실행 | |
permissions: | |
contents: read # 설정 파일 읽기 권한 | |
issues: write # 이슈에 라벨을 추가할 수 있는 권한 | |
pull-requests: write # PR에 라벨을 추가할 수 있는 권한 | |
steps: | |
- name: Run Issue PR Labeler | |
uses: hoho4190/[email protected] | |
with: | |
token: ${{ secrets.GH_TOKEN }} |