File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments