remove dependabot file #637
This file contains 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: rebase pull requests | |
'on': | |
push: | |
release: | |
types: [published] | |
jobs: | |
auto-rebase: | |
name: rebase dependabot PRs | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' || github.event == 'release' | |
timeout-minutes: 5 | |
steps: | |
- name: request rebase | |
uses: 'bbeesley/gha-auto-dependabot-rebase@main' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |