-
Notifications
You must be signed in to change notification settings - Fork 1
39 lines (37 loc) · 1.16 KB
/
rollover.yaml
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
on:
workflow_dispatch: {}
schedule:
# Runs "at 13:00, only on Thursday" (see https://crontab.guru)
- cron: '0 13 * * 4'
jobs:
move-to-next-iteration:
name: Move to next iteration
runs-on: ubuntu-latest
steps:
- uses: blombard/move-to-next-iteration@master
with:
owner: codecov
number: 25 # Platform
token: ${{ secrets.PAT_TOKEN }}
iteration-field: Sprint
iteration: last
new-iteration: current
statuses: Todo,In Progress,In Review,Merged
- uses: blombard/move-to-next-iteration@master
with:
owner: codecov
number: 31 # Applications
token: ${{ secrets.PAT_TOKEN }}
iteration-field: Sprint
iteration: last
new-iteration: current
statuses: Todo,In Progress,In Review,Merged
- uses: blombard/move-to-next-iteration@master
with:
owner: codecov
number: 36 # Design
token: ${{ secrets.PAT_TOKEN }}
iteration-field: Sprint
iteration: last
new-iteration: current
statuses: Todo,In Progress,User Research,In Review,Merged