Update Demo Data #39
Workflow file for this run
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: Update Demo Data | |
on: | |
schedule: | |
# ?????????????? minute (0 - 59) | |
# ? ?????????????? hour (0 - 23) | |
# ? ? ?????????????? day of the month (1 - 31) | |
# ? ? ? ?????????????? month (1 - 12 or JAN-DEC) | |
# ? ? ? ? ?????????????? day of the week (0 - 6 or SUN-SAT) | |
# ? ? ? ? ? | |
# ? ? ? ? ? | |
# ? ? ? ? ? | |
# * * * * * | |
# At 00:00 UTC on Sundays | |
- cron: "0 0 * * 0" | |
# Workflow dispatch trigger allows manually running workflow | |
workflow_dispatch: {} | |
jobs: | |
update-demo-data: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up local Git config | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<>" | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Configure Ruby Environment | |
shell: bash -l {0} # https://github.com/actions/virtual-environments/issues/4 | |
run: | | |
nvm install | |
nvm use | |
npm install | |
bundle install --without documentation --path bundle | |
- name: Run the update script | |
run: ruby ./update_demo_data.rb | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
commit-message: "Update CCO Demo Data" | |
title: "Update CCO Demo Data" | |
body: "Updated CCO Demo from GitHub Actions Workflow [${{ github.workflow }}](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})" | |
branch: "task/update-cco-demo-data" | |
delete-branch: true | |
labels: "automation, data" | |
- name: Check outputs | |
if: ${{ steps.cpr.outputs.pull-request-number }} | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |