Move Tasks To New Iteration #17
This file contains 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 Tasks To New Iteration | |
on: | |
schedule: | |
# Runs "at 05:00 GMT+2, only on Thursday" | |
- cron: '0 3 * * 4' | |
jobs: | |
move-to-next-iteration: | |
name: Move to next iteration | |
runs-on: ubuntu-latest | |
steps: | |
- uses: blombard/move-to-next-iteration@master | |
with: | |
owner: ita-social-projects | |
number: 21 | |
token: ${{ secrets.WORKFLOWS_PAT }} | |
iteration-field: Sprint | |
iteration: last | |
new-iteration: current | |
statuses: '✍Planned,🏗 In progress,👀PR' |