Skip to content

feat(ci): Add CI job to transfer tasks from the previous iteration #396

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 14, 2025
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/move-to-next-iteration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
schedule:
# Runs every Wednesday at 2:00 AM UTC
# https://crontab.guru/#0_2_*_*_3
- cron: "0 2 * * 3"

jobs:
move-to-next-iteration:
name: Transfer tasks from the previous iteration to the current iteration.
runs-on: ubuntu-latest

steps:
- name: Move issues to next iteration
uses: blombard/move-to-next-iteration@master
with:
owner: input-output-hk
number: 102
token: ${{ secrets.CATALYST_PROJECT_PAT }}
iteration-field: Iteration
iteration: last
new-iteration: current
statuses: "🔖 Ready,🏗 In progress,👀 In review,🔬 Ready For QA,🛑 Blocked"
Loading