Skip to content

Commit 1ebe7f6

Browse files
committed
Add workflow to carry over tasks to the next iteration of the project
1 parent f9b9062 commit 1ebe7f6

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+
name: Move unfinished items to next iteration
2+
3+
on:
4+
schedule:
5+
# Runs every Monday at 05:00
6+
- cron: '0 5 * * 1'
7+
8+
jobs:
9+
move-to-next-iteration:
10+
name: Move to next iteration
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: blombard/move-to-next-iteration@master
15+
with:
16+
owner: "o1-labs" # Your GitHub org or user name
17+
number: 24 # Project number (from the URL)
18+
token: ${{ secrets.PROJECT_PAT }} # Personal Access Token with 'project' scope
19+
iteration-field: Iteration # The name of your iteration field
20+
iteration: last # Which iteration to move from (last/current)
21+
new-iteration: current # Which iteration to move to (current/next)
22+
excluded-statuses: "Done,Won't Fix" # Exclude completed statuses

0 commit comments

Comments
 (0)