From 558c8b100289e78838f4466ad7bde6a5ae4a7bd0 Mon Sep 17 00:00:00 2001 From: Claiyc <58397976+Claiyc@users.noreply.github.com> Date: Thu, 13 Apr 2023 08:54:44 +0200 Subject: [PATCH] feat(chore): add move to next sprint workflow (#86) --- .github/workflows/next-iteration.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/next-iteration.yml diff --git a/.github/workflows/next-iteration.yml b/.github/workflows/next-iteration.yml new file mode 100644 index 0000000..11b0413 --- /dev/null +++ b/.github/workflows/next-iteration.yml @@ -0,0 +1,20 @@ +on: + schedule: + # Runs "at 12:00, only on Thursday" + - cron: '0 12 * * 4' + +jobs: + move-to-next-iteration: + name: Move to next iteration + runs-on: ubuntu-latest + + steps: + - uses: blombard/move-to-next-iteration@master + with: + owner: VIGAD + number: 1 + token: ${{ secrets.PROJECT_PAT }} + iteration-field: Sprint + iteration: last + new-iteration: current + statuses: Not Ready,In Progress,Ready for review \ No newline at end of file