-
Notifications
You must be signed in to change notification settings - Fork 5
32 lines (29 loc) · 1.1 KB
/
labeled-issue-to-project.yml
File metadata and controls
32 lines (29 loc) · 1.1 KB
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
name: labeled issue to project
on:
issues:
types: [labeled]
jobs:
labeled-issue-to-project:
runs-on: ubuntu-latest
steps:
- name: labeled enhancement issue to project
uses: alex-page/github-project-automation-plus@v0.8.1
if: ${{ contains(github.event.issue.labels.*.name, 'enhancement') }}
with:
project: Distributed Update System 看板
column: '服务端需求'
repo-token: '${{ secrets.GH_TOKEN }}'
- name: labeled Solved issue to project
uses: alex-page/github-project-automation-plus@v0.8.1
if: ${{ contains(github.event.issue.labels.*.name, 'Solved') }}
with:
project: Distributed Update System 看板
column: '服务端已完成'
repo-token: '${{ secrets.GH_TOKEN }}'
- name: labeled bug issue to project
uses: alex-page/github-project-automation-plus@v0.8.1
if: ${{ contains(github.event.issue.labels.*.name, 'bug') }}
with:
project: Distributed Update System 看板
column: 'BUG'
repo-token: '${{ secrets.GH_TOKEN }}'