Skip to content

Commit

Permalink
Merge pull request #2230 from alphagov/2202_set-up-automation-for-new…
Browse files Browse the repository at this point in the history
…-project-board

Project board automation - automating the process of moving issues linked to a PR to the 'Ready for Release' column
  • Loading branch information
HannahJMWood authored Jun 20, 2023
2 parents 13ec630 + d49b423 commit 45fef43
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/move-issue-into-ready-for-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Move issues into 'Ready for release' when they are closed by a PR

on:
issues:
types: [closed]

jobs:
move-issue-into-ready-for-release:
runs-on: ubuntu-latest
steps:
- uses: alex-page/[email protected]
with:
project: GOV.UK Prototype Team Sprintboard
column: Ready for release
repo-token: ${{ secrets.GITHUB_TOKEN }}

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ORGANIZATION: alphagov
PROJECT_NUMBER: 67

0 comments on commit 45fef43

Please sign in to comment.