Skip to content

Commit

Permalink
Create MoveToNextIteration.yml
Browse files Browse the repository at this point in the history
Automatically move issues and pull requests to the next iteration of your Project
  • Loading branch information
sarora180673 authored Jul 12, 2024
1 parent 1173fbf commit 8568f7d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/MoveToNextIteration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
schedule:
# Runs "at 05:00, only on Monday" (see https://crontab.guru)
- 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: rairprotocol
number: 1
token: ${{ secrets.PROJECT_PAT }}
iteration-field: Iteration
iteration: last
new-iteration: current
excluded-statuses: "Done,Won't Fix"

0 comments on commit 8568f7d

Please sign in to comment.