[Cron] Update Events from Google Form #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "[Cron] Update Events from Google Form" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 9 * * 1-5' | |
jobs: | |
runner-job: | |
runs-on: ubuntu-latest | |
# Only run on main repo on and PRs that match the main repo. | |
if: | | |
github.repository == 'galaxyproject/training-material' && | |
(github.event_name != 'pull_request' || | |
github.event.pull_request.head.repo.full_name == github.repository) | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
# BEGIN Dependencies | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.2" | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: Install dependencies | |
run: | | |
gem install bundler | |
bundle config path vendor/bundle | |
bundle install --jobs 4 --retry 3 | |
bundle pristine ffi | |
# END Dependencies | |
- name: Update events from Google Form | |
id: generate | |
run: | | |
bundle exec ruby bin/google-form-event.rb >> $GITHUB_OUTPUT | |
- name: Create Pull Request for Events | |
# If it's not a Pull Request then commit any changes as a new PR. | |
if: | | |
github.event_name != 'pull_request' && | |
steps.generate.outputs.new_ids != '0' | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: Import events from Google Form | |
branch-suffix: timestamp | |
title: "[Google Form] New Event!" | |
add-paths: events/ | |
body: | | |
${{steps.generate.outputs.pr_message}} |