-
Notifications
You must be signed in to change notification settings - Fork 17
37 lines (35 loc) · 1.43 KB
/
labeled-issue-to-project.yml
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
27
28
29
30
31
32
33
34
35
36
37
name: issue to project
on:
issues:
types: [labeled]
jobs:
labeled-issue-to-project:
runs-on: ubuntu-latest
steps:
- name: labeled add app
uses: konradpabjan/[email protected]
if: contains(github.event.issue.labels.*.name, '添加软件[Add App]')
with:
action-token: '${{ secrets.BOT_TOKEN }}'
project-url: 'https://github.com/orgs/DUpdateSystem/projects/3'
column-name: '软件适配'
label-name: '添加软件[Add App]'
columns-to-ignore: '已完成'
- name: labeled add mirrors
uses: konradpabjan/[email protected]
if: contains(github.event.issue.labels.*.name, '添加源支持[Add Mirrors]')
with:
action-token: '${{ secrets.BOT_TOKEN }}'
project-url: 'https://github.com/orgs/DUpdateSystem/projects/3'
column-name: '软件源适配'
label-name: '添加源支持[Add Mirrors]'
columns-to-ignore: '已完成'
- name: labeled suggest
uses: konradpabjan/[email protected]
if: contains(github.event.issue.labels.*.name, '提出建议[Suggest]')
with:
action-token: '${{ secrets.BOT_TOKEN }}'
project-url: 'https://github.com/orgs/DUpdateSystem/projects/3'
column-name: '建议'
label-name: '提出建议[Suggest]'
columns-to-ignore: '已完成'