Skip to content

Commit

Permalink
ci: Automatically update checksums (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
eifinger authored Feb 14, 2024
1 parent c556e50 commit 1197a65
Show file tree
Hide file tree
Showing 14 changed files with 83,346 additions and 944 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update_checksums.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 'Update Checksums'
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: node dist/update-checksums/index.js src/checksums.ts ${{ secrets.GITHUB_TOKEN }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
commit-message: "chore: update checksums"
title: "chore: update checksums"
body: "chore: update checksums"
base: main
labels: automated-pr
branch: update-checksums-pr
delete-branch: true
Loading

0 comments on commit 1197a65

Please sign in to comment.