Do not run some workflows for Dependabot branches
Issue gh-13873
This commit is contained in:
parent
99deda3b6f
commit
ab812b2b53
|
@ -2,8 +2,8 @@ name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches-ignore:
|
||||||
- '**'
|
- "dependabot/**"
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 10 * * *' # Once per day at 10am UTC
|
- cron: '0 10 * * *' # Once per day at 10am UTC
|
||||||
workflow_dispatch: # Manual trigger
|
workflow_dispatch: # Manual trigger
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: Deploy Docs
|
name: Deploy Docs
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches-ignore: [ gh-pages ]
|
branches-ignore: [ "gh-pages", "dependabot/**" ]
|
||||||
tags: '**'
|
tags: '**'
|
||||||
repository_dispatch:
|
repository_dispatch:
|
||||||
types: request-build-reference # legacy
|
types: request-build-reference # legacy
|
||||||
|
|
Loading…
Reference in New Issue