This repository was archived by the owner on Jun 13, 2025. It is now read-only.
Create dependency bump PR #21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: false | |