Fetch Scenesfrancophones Events #3
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: Fetch Scenesfrancophones Events | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 5 * * 1" # Run at 1:00 AM ET every Monday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: actions/setup-ruby@v1 | |
with: | |
ruby-version: '3.1' | |
- run: bundle install | |
- name: Run Main Script | |
run: ruby main.rb https://scenesfrancophones.ca/spectacles?page= https://scenesfrancophones.ca div.title output/events.jsonld | |
- name: Commit and Push Changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Actions" | |
git add "output/events.jsonld" | |
git commit -m "Add data generated by the script" | |
git push | |
- name: Call Artsdata Workflow | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{secrets.PAT}} | |
event-type: trigger-events-artsdata-push |