forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (55 loc) · 2.06 KB
/
pm-map-labels-to-fields.yml
File metadata and controls
62 lines (55 loc) · 2.06 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Map issue labels to project fields
on:
schedule:
- cron: '0 */3 * * *'
jobs:
map-labels-to-fields:
name: 'Map issue labels to project fields'
runs-on: ubuntu-latest
if: github.repository == 'elastic/kibana'
steps:
- name: Checkout Actions
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: 'elastic/kibana-github-actions'
ref: main
path: ./actions
persist-credentials: false
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Update every issue in project 1525 (https://github.com/orgs/elastic/projects/1525)
uses: ./actions/github-projects/map-labels
with:
github-token: ${{secrets.PM_GH_TOKEN}}
all: 'true'
project-number: 1525
owner: 'elastic'
- name: Update every issue in project 1538 (https://github.com/orgs/elastic/projects/1538)
uses: ./actions/github-projects/map-labels
with:
github-token: ${{secrets.PM_GH_TOKEN}}
all: 'true'
project-number: 1538
owner: 'elastic'
- name: Update every issue in project 787 (https://github.com/orgs/elastic/projects/787)
uses: ./actions/github-projects/map-labels
with:
github-token: ${{secrets.PM_GH_TOKEN}}
all: 'true'
project-number: 787
owner: 'elastic'
mapping: 'mapping-sizes-and-impact-p787.json'
- name: Update every issue in project 859 (https://github.com/orgs/elastic/projects/859)
uses: ./actions/github-projects/map-labels
with:
github-token: ${{secrets.PM_GH_TOKEN}}
all: 'true'
project-number: 859
owner: 'elastic'
- name: Update every issue in project 1326 (https://github.com/orgs/elastic/projects/1326)
uses: ./actions/github-projects/map-labels
with:
github-token: ${{secrets.PM_GH_TOKEN}}
all: 'true'
project-number: 1326
owner: 'elastic'