Update Demo Data #72
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 | |
with: | |
ref: task/update-cco-demo-data | |
- 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 | |
run: bundle install --without documentation --path bundle | |
- name: Run the update script | |
run: | | |
mkdir -p flexera/data/aws | |
mkdir -p flexera/data/azure | |
mkdir -p flexera/data/google | |
ruby update_demo_data.rb | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
file_pattern: 'flexera/data/aws/*.json flexera/data/azure/*.json flexera/data/google/*.json' |