Skip to content
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

Create new git action to rollover sprint Issues #11357

Merged
merged 1 commit into from
Jan 30, 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
23 changes: 23 additions & 0 deletions .github/workflows/sprint-issues-rollover.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This workflow will move all unfinish tickets to the next sprint

name: "Sprint Issues Rollover"

on:
schedule:
# Runs every Monday at 6pm EST
- cron: "0 22 * * 1"

jobs:
main:
name: Move to next sprint
runs-on: ubuntu-latest
steps:
- uses: blombard/move-to-next-iteration@master
with:
owner: cBioPortal
number: 19 # The project number as you see it in the URL
token: ${{secrets.PROJECT_PAT}} # Needs 'project' write perms
iteration-field: Sprint # https://github.com/blombard/move-to-next-iteration/issues/7
iteration: current
new-iteration: next
excluded-statuses: Done
Loading