Skip to content

test : label test

test : label test #7

Workflow file for this run

# workflow 의 이름
name: PR labeler
# 트리거될 이벤트 설정
on:
pull_request:
types: [opened]
# 트리거되었을 때 실행될 job 작성
jobs:
labeler:
# runner 설정

Check failure on line 12 in .github/workflows/label.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/label.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
runs-on: ubuntu-latest
# 리파지토리에 대한 권한 설정
permissions:
contents: read
pull-requests: write
steps:
- name: Check Labels
id: labeler
uses: jimschubert/labeler-action@v1
with:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}