Skip to content

Commit

Permalink
Add haskell dependency bumper action
Browse files Browse the repository at this point in the history
  • Loading branch information
byorgey committed Aug 10, 2023
1 parent 8f5ff13 commit fb56349
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/bump.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Create dependency bump PR
on:
# allows manual triggering from https://github.com/../../actions/workflows/bump.yml
workflow_dispatch:
# runs weekly on Thursday at 8:00
schedule:
- cron: '0 8 * * 4'

permissions:
contents: write
pull-requests: write

jobs:
bump:
runs-on: ubuntu-latest
steps:
- uses: nomeata/haskell-bounds-bump-action@main
with:
test: true

0 comments on commit fb56349

Please sign in to comment.