We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a666225 commit 8b461ffCopy full SHA for 8b461ff
.github/workflows/sprint-issues-rollover.yml
@@ -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