Item 32: public 상속 모형은 반드시 "is-a(...는 ...의 일종이다)"를 따르도록 만들자 #308
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_Add | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
issue: | |
runs-on: ubuntu-latest | |
steps: | |
- env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
ISSUE_URL: ${{ github.event.issue.html_url }} | |
run: | | |
gh issue edit $ISSUE_URL --add-project "Todo" | |
- env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
ISSUE_URL: ${{ github.event.issue.html_url }} | |
run: | | |
gh issue edit $ISSUE_URL --add-label "2024" | |
- env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
ISSUE_URL: ${{ github.event.issue.html_url }} | |
run: | | |
gh issue edit $ISSUE_URL --add-assignee "fkdl0048" | |