Skip to content

Commit 08d324b

Browse files
committed
Add dep bumper
1 parent 3b1f5ef commit 08d324b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/bump.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Create dependency bump PR
2+
on:
3+
# allows manual triggering from https://github.com/../../actions/workflows/bump.yml
4+
workflow_dispatch:
5+
# runs weekly on Thursday at 8:00
6+
schedule:
7+
- cron: '0 8 * * 4'
8+
9+
permissions:
10+
contents: write
11+
pull-requests: write
12+
13+
jobs:
14+
bump:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: nomeata/haskell-bounds-bump-action@main

0 commit comments

Comments
 (0)