Skip to content

Scrape latest data #1473

Scrape latest data

Scrape latest data #1473

Workflow file for this run

name: Scrape latest data
on:
schedule:
- cron: '15 1 * * *'
workflow_dispatch: {}
jobs:
scrape:
runs-on: ubuntu-latest
steps:
- name: Check out this repo
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '^1.15'
- name: Fetch latest data
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: |-
go run main.go kubernetes/kops
go run main.go kubernetes/kubernetes
go run main.go hashicorp/terraform
go run main.go terraform-providers/terraform-provider-aws
- name: Commit and push if it changed
run: |-
git config user.name "github bot"
git config user.email "[email protected]"
git add -A
timestamp=$(date -u)
git commit -m "Data update: ${timestamp}" || exit 0
git push