Refactor: 1차 기능 리팩토링 및 테스트코드 추가 #146
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
# example | |
name: Issue PR Labeler | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
pull_request: # or pull_request_target | |
types: | |
- opened | |
- reopened | |
- synchronize | |
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: Run Issue PR Labeler | |
uses: hoho4190/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |