-
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (23 loc) · 761 Bytes
/
issue-automation.yml
File metadata and controls
26 lines (23 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 }}