Skip to content

Commit 8b461ff

Browse files
committed
Create new git action: sprint-issues-rollover
Sprint Issues Rollover script will roll over issue sprint on every Monday night
1 parent a666225 commit 8b461ff

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This workflow will move all unfinish tickets to the next sprint
2+
3+
name: "Sprint Issues Rollover"
4+
5+
on:
6+
schedule:
7+
# Runs every Monday at 6pm EST
8+
- cron: "0 22 * * 1"
9+
10+
jobs:
11+
main:
12+
name: Move to next sprint
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: blombard/move-to-next-iteration@master
16+
with:
17+
owner: cBioPortal
18+
number: 19 # The project number as you see it in the URL
19+
token: ${{secrets.PROJECT_PAT}} # Needs 'project' write perms
20+
iteration-field: Sprint # https://github.com/blombard/move-to-next-iteration/issues/7
21+
iteration: current
22+
new-iteration: next
23+
excluded-statuses: Done

0 commit comments

Comments
 (0)