mirror of
https://github.com/vee1e/capa.git
synced 2026-09-01 18:57:15 +00:00
ci: skip changelog.yml when PR author is dependabot
This commit is contained in:
parent
d4d856767d
commit
24236dda0e
2 changed files with 5 additions and 1 deletions
5
.github/workflows/changelog.yml
vendored
5
.github/workflows/changelog.yml
vendored
|
|
@ -13,7 +13,10 @@ permissions:
|
|||
jobs:
|
||||
check_changelog:
|
||||
# no need to check for dependency updates via dependabot
|
||||
if: github.actor != 'dependabot[bot]' && github.actor != 'dependabot-preview[bot]'
|
||||
# github.event.pull_request.user.login refers to PR author
|
||||
if: |
|
||||
github.event.pull_request.user.login != 'dependabot[bot]' &&
|
||||
github.event.pull_request.user.login != 'dependabot-preview[bot]'
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
NO_CHANGELOG: '[x] No CHANGELOG update needed'
|
||||
|
|
|
|||
|
|
@ -186,6 +186,7 @@ Special thanks to our repeat and new contributors:
|
|||
- CI: update tests.yml workflow to exclude web and documentation files #2263 @s-ff
|
||||
- CI: update build.yml workflow to exclude web and documentation files #2270 @s-ff
|
||||
- CI: add web releases workflow #2455 @s-ff
|
||||
- CI: skip changelog.yml for dependabot PRs #2471
|
||||
|
||||
### Raw diffs
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue