From b189ff15cc498f12d3ef9ba67824d7515268685b Mon Sep 17 00:00:00 2001 From: Murilo Dal Ri Date: Wed, 3 Jul 2024 14:14:59 +0100 Subject: [PATCH] Add gem version bump checker workflow This workflow will check every pull request and fail if it does not make changes to the changelog and the version.rb or .gemspec file. This will not be a required check to start with. https://trello.com/c/R1kkdVjt/3560-re-evaluate-effectiveness-of-gem-auto-release-workflow-3 --- .github/workflows/gem-bump-checker.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/gem-bump-checker.yml diff --git a/.github/workflows/gem-bump-checker.yml b/.github/workflows/gem-bump-checker.yml new file mode 100644 index 0000000..e5f0283 --- /dev/null +++ b/.github/workflows/gem-bump-checker.yml @@ -0,0 +1,9 @@ +on: + workflow_dispatch: {} + pull_request: {} + +jobs: + gem-bump-checker: + uses: alphagov/govuk-infrastructure/.github/workflows/gem-bump-checker.yml@main + secrets: + GH_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}