From 7684308334f09eac44d68f52a968f6e754176366 Mon Sep 17 00:00:00 2001 From: clabby Date: Tue, 2 Apr 2024 19:58:31 -0400 Subject: [PATCH] feat(ci): Add workflow to cycle issues (#73) --- .github/workflows/issue_cycler.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/issue_cycler.yaml diff --git a/.github/workflows/issue_cycler.yaml b/.github/workflows/issue_cycler.yaml new file mode 100644 index 000000000..a321c5cc0 --- /dev/null +++ b/.github/workflows/issue_cycler.yaml @@ -0,0 +1,20 @@ +on: + schedule: + # Runs "at 05:00, only on Monday" (see https://crontab.guru) + - cron: "0 5 * * 1" + +jobs: + move-to-next-iteration: + name: Move to next iteration + runs-on: ubuntu-latest + + steps: + - uses: blombard/move-to-next-iteration@master + with: + owner: ethereum-optimism + number: 60 + token: ${{ secrets.GITHUB_TOKEN }} + iteration-field: Cycle + iteration: last + new-iteration: current + excluded-statuses: "Done"