Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/board-carryover-interation
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Move unfinished items to next iteration

on:
schedule:
# Runs every Monday at 05:00
- cron: '0 5 * * 1'

jobs:
move-to-next-iteration:
name: Move to next iteration
runs-on: ubuntu-latest

steps:
- uses: blombard/move-to-next-iteration@master
with:
owner: "o1-labs" # Your GitHub org or user name
number: 24 # Project number (from the URL)
token: ${{ secrets.PROJECT_PAT }} # Personal Access Token with 'project' scope
iteration-field: Iteration # The name of your iteration field
iteration: last # Which iteration to move from (last/current)
new-iteration: current # Which iteration to move to (current/next)
excluded-statuses: "Done,Won't Fix" # Exclude completed statuses
Loading