mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 04:57:08 +00:00
fix: prevent automatic version bumps from dependabot
This commit is contained in:
parent
3bbec0ebed
commit
378d259895
5
.github/workflows/merge.yml
vendored
5
.github/workflows/merge.yml
vendored
@ -9,7 +9,10 @@ permissions:
|
||||
|
||||
jobs:
|
||||
bump-version:
|
||||
if: github.event.pull_request.merged == true
|
||||
if: |
|
||||
github.event.pull_request.merged == true &&
|
||||
github.event.pull_request.user.login != 'dependabot[bot]' &&
|
||||
github.event.pull_request.user.login != 'dependabot-preview[bot]'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out
|
||||
|
Loading…
x
Reference in New Issue
Block a user