[feat] AI 여행 경로 추천 #43
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: | |
types: | |
- opened | |
- reopened | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read # required to read configuration yml file | |
issues: write # required to add labels to issues | |
pull-requests: write # required to add labels to pull requests | |
steps: | |
- name: Print GitHub Context | |
run: echo '${{ toJson(github) }}' | |
- name: Run Issue PR Labeler | |
uses: hoho4190/[email protected] | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
disable-bot: true | |
config-file-name: labeler-config.yml | |
env: | |
DEBUG: true |