fix(tools): ignore renovate (#42008)
Ignore the branches renovate creates for the push events.
This commit is contained in:
committed by
GitHub
parent
3da4be21bb
commit
4ed75cb79f
2
.github/workflows/codeql-analysis.yml
vendored
2
.github/workflows/codeql-analysis.yml
vendored
@ -2,6 +2,8 @@ name: CodeQL
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- 'renovate/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 20 * * 5'
|
- cron: '0 20 * * 5'
|
||||||
|
5
.github/workflows/cypress-push.yml
vendored
5
.github/workflows/cypress-push.yml
vendored
@ -1,5 +1,8 @@
|
|||||||
name: Cypress - Push
|
name: Cypress - Push
|
||||||
on: [push]
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- 'renovate/**'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cypress-run:
|
cypress-run:
|
||||||
|
6
.github/workflows/node.js-tests.yml
vendored
6
.github/workflows/node.js-tests.yml
vendored
@ -1,5 +1,9 @@
|
|||||||
name: Node.js CI
|
name: Node.js CI
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- 'renovate/**'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
Reference in New Issue
Block a user