Skip to content

Commit 973e301

Browse files
authored
feat(ci): Add CI job to transfer tasks from the previous iteration to the current iteration. (#396)
1 parent 287ebfb commit 973e301

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
schedule:
3+
# Runs every Wednesday at 2:00 AM UTC
4+
# https://crontab.guru/#0_2_*_*_3
5+
- cron: "0 2 * * 3"
6+
7+
jobs:
8+
move-to-next-iteration:
9+
name: Transfer tasks from the previous iteration to the current iteration.
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Move issues to next iteration
14+
uses: blombard/move-to-next-iteration@master
15+
with:
16+
owner: input-output-hk
17+
number: 102
18+
token: ${{ secrets.CATALYST_PROJECT_PAT }}
19+
iteration-field: Iteration
20+
iteration: last
21+
new-iteration: current
22+
statuses: "🔖 Ready,🏗 In progress,👀 In review,🔬 Ready For QA,🛑 Blocked"

0 commit comments

Comments
 (0)