diff --git a/.github/workflows/board-carryover-interation b/.github/workflows/board-carryover-interation new file mode 100644 index 0000000000..d022c0a05c --- /dev/null +++ b/.github/workflows/board-carryover-interation @@ -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