Move unfinished items to next iteration #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |