Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from alphagov/Setup-Github-Action
Browse files Browse the repository at this point in the history
Setting up GitHub Action
  • Loading branch information
PeterHattyar authored Dec 15, 2023
2 parents 0b6e8be + bd8fb6e commit 5cd915f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/version_checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "Gem Version Checker"

on:
workflow_dispatch: {}
schedule:
- cron: '00 10 * * 1-5' # Runs at 10:00, Monday through Friday.

jobs:
gem-version-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Gem Version Checker
id: gem_version_checker
run: |
bundle exec rake gem_release_alert

0 comments on commit 5cd915f

Please sign in to comment.