diff options
author | David Timber <dxdt@dev.snart.me> | 2024-10-26 13:36:06 +0200 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-10-26 13:36:06 +0200 |
commit | 644235b021a1649241da5fbca8600630951785bd (patch) | |
tree | 73f623bfc3180f8ef4bcd36d9f485ed211ce527c /.github/workflows/snapshot-automation.yml | |
parent | 4ac931ffe069085abd41410361398d703f387050 (diff) | |
parent | 0ba39be479ec7b5ea432031c4df125edc5bb9f6b (diff) |
Merge branch 'dev'
Diffstat (limited to '.github/workflows/snapshot-automation.yml')
-rw-r--r-- | .github/workflows/snapshot-automation.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/snapshot-automation.yml b/.github/workflows/snapshot-automation.yml new file mode 100644 index 0000000..e3d5ee3 --- /dev/null +++ b/.github/workflows/snapshot-automation.yml @@ -0,0 +1,25 @@ +name: rpki-tracker-kr snapshot automation +run-name: ${{ github.actor }}가 RPKI 보급률 데이터를 업데이트 중 +on: + schedule: + - cron: "00 00 * * mon" + workflow_dispatch: +permissions: + contents: write +jobs: + Do-snapshot: + name: Do data dump snapshot + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run make + run: | + make clean + make + - name: Do commit + run: | + git config --global user.name 'Snapshot Automation Bot' + git config --global user.email '_@users.noreply.github.com' + git add --all + git commit -sm 'Data snapshot commit' + git push |