Skip to content

Commit

Permalink
Add autorelease workflow
Browse files Browse the repository at this point in the history
This will allow the gem to release patch versions when dependencies
are updated. This will reduce some toil for the team.
  • Loading branch information
JonathanHallam committed Sep 25, 2024
1 parent 85a9ebb commit 4fd2aaf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 4fd2aaf

Please sign in to comment.