Skip to content

Commit 9816804

Browse files
authored
Add GitHub Actions workflow for upstream version bump
1 parent e540cdb commit 9816804

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/auto_check.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Bump upstream version
2+
3+
on:
4+
schedule:
5+
- cron: "00 */4 * * *"
6+
push:
7+
branches:
8+
- "main"
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- run: npx @dappnode/dappnodesdk github-action bump-upstream
16+
env:
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18+
PINATA_API_KEY: ${{ secrets.PINATA_API_KEY }}
19+
PINATA_SECRET_API_KEY: ${{ secrets.PINATA_SECRET_API_KEY }}

0 commit comments

Comments
 (0)