Content 필터 컴포넌트 중복 제거 및 공통화 #206
This file contains hidden or 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 Automation | |
| on: | |
| issues: | |
| types: [opened, labeled, closed] | |
| concurrency: | |
| group: issue-${{ github.event.issue.number }} | |
| cancel-in-progress: false | |
| jobs: | |
| automation: | |
| permissions: | |
| issues: write | |
| contents: read | |
| uses: KubrickCode/workflow-toolkit/.github/workflows/issue-automation.yml@main | |
| with: | |
| project-number: "4" | |
| event-action: ${{ github.event.action }} | |
| issue-number: ${{ github.event.issue.number }} | |
| issue-node-id: ${{ github.event.issue.node_id }} | |
| issue-user-login: ${{ github.event.issue.user.login }} | |
| label-name: ${{ github.event.label.name || '' }} | |
| has-bug-label: ${{ contains(github.event.issue.labels.*.name, 'bug') }} | |
| secrets: | |
| GH_PAT: ${{ secrets.GH_PAT }} |