mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-11-21 13:51:28 +01:00
Update non-example GitHub Workflows to ignore "push" actions to "dependabot/**" branches because these are also associated with a "pull_request".
This commit is contained in:
parent
1b14491c07
commit
ccde71ff7c
2 changed files with 4 additions and 0 deletions
2
.github/workflows/checkers.yml
vendored
2
.github/workflows/checkers.yml
vendored
|
@ -3,6 +3,8 @@ name: Checkers
|
|||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
schedule:
|
||||
- cron: '30 12 * * *'
|
||||
workflow_dispatch:
|
||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -3,6 +3,8 @@ name: Test markdownlint-cli2-action
|
|||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
|
|
Loading…
Reference in a new issue