You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Move to next iteration
v0.3.0
Automatically move issues and pull requests to the next iteration of your GitHub project with this Github Action.
on:
schedule:
# Runs "at 01:00, only on Monday" (see https://crontab.guru)
- cron: '0 1 * * 1'
jobs:
move-to-next-iteration:
name: Move to next iteration
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: blombard/move-to-next-iteration@master
with:
owner: OrgName
number: 1
token: ${{ secrets.PROJECT_PAT }}
iteration-field: Iteration
iteration: last
new-iteration: current
statuses: Todo,In Progress,In Review
The account name of the GitHub organization.
Project number as you see it in the URL of the project.
Personal access token or an OAuth token. the project
scope is required.
The name of your iteration field.
Should be last
or current
.
Should be current
or next
.
Statuses of the issues to move to the next iteration.
This action was made possible thanks to https://github.com/gr2m/github-project.