Skip to content

Commit

Permalink
feat(ci): Add workflow to cycle issues (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby authored Apr 2, 2024
1 parent 97bf8f1 commit 7684308
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/issue_cycler.yaml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 7684308

Please sign in to comment.