From d49b423818e74ea669a45461ca942a7593edf2d7 Mon Sep 17 00:00:00 2001 From: HannahJMWood <124601633+HannahJMWood@users.noreply.github.com> Date: Thu, 15 Jun 2023 16:06:43 +0100 Subject: [PATCH] adding workflow closing issues --- .../move-issue-into-ready-for-release.yaml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/move-issue-into-ready-for-release.yaml diff --git a/.github/workflows/move-issue-into-ready-for-release.yaml b/.github/workflows/move-issue-into-ready-for-release.yaml new file mode 100644 index 0000000000..5c2b1e50b9 --- /dev/null +++ b/.github/workflows/move-issue-into-ready-for-release.yaml @@ -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/github-project-automation-plus@v0.8.3 + 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 \ No newline at end of file