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

Commit

Permalink
Setting up GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterHattyar committed Dec 15, 2023
1 parent 3b7bcd1 commit bd8fb6e
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 bd8fb6e

Please sign in to comment.