forked from pingcap/tiflash
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (34 loc) · 1.13 KB
/
assign_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
# name: Auto Assign Project Local
#
# on:
# issues:
# types: [labeled]
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# jobs:
# assign_one_project:
# runs-on: ubuntu-latest
# name: Assign to One Project
# steps:
# - name: Run issues assignment to Bug Tracking Kanban
# uses: srggrs/assign-one-project-github-action@1.2.0
# if: |
# contains(github.event.issue.labels.*.name, 'type/bug')
# with:
# project: 'https://github.com/pingcap/tics/projects/11'
# column_name: 'To do'
# - name: Run issues assignment to New Feature Kanban
# uses: srggrs/assign-one-project-github-action@1.2.0
# if: |
# contains(github.event.issue.labels.*.name, 'type/new-feature')
# with:
# project: 'https://github.com/pingcap/tics/projects/12'
# column_name: 'To do'
# - name: Run issues assignment to QA Kanban
# uses: srggrs/assign-one-project-github-action@1.2.0
# if: |
# contains(github.event.issue.labels.*.name, 'type/qa')
# with:
# project: 'https://github.com/pingcap/tics/projects/13'
# column_name: 'To do'