From ce0d2e876aebd41b7474c3327bd721590b25b88b Mon Sep 17 00:00:00 2001 From: Bruce Bolt Date: Wed, 9 Oct 2024 10:41:34 +0100 Subject: [PATCH] Add gem autorelease workflow This will automatically release patch versions when dependencies are updated. --- .github/workflows/autorelease.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/autorelease.yml diff --git a/.github/workflows/autorelease.yml b/.github/workflows/autorelease.yml new file mode 100644 index 00000000..9e097a84 --- /dev/null +++ b/.github/workflows/autorelease.yml @@ -0,0 +1,10 @@ +on: + workflow_dispatch: {} + schedule: + - cron: '30 10 * * 1-5' # 10:30am UTC, Mon-Fri. + +jobs: + autorelease: + uses: alphagov/govuk-infrastructure/.github/workflows/autorelease-rubygem.yml@main + secrets: + GH_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }} \ No newline at end of file