Browse Source

Do not run some workflows for Dependabot branches

Issue gh-13873
pull/13905/head
Marcus Da Coregio 2 years ago
parent
commit
ab812b2b53
  1. 4
      .github/workflows/continuous-integration-workflow.yml
  2. 2
      .github/workflows/deploy-docs.yml

4
.github/workflows/continuous-integration-workflow.yml

@ -2,8 +2,8 @@ name: CI @@ -2,8 +2,8 @@ name: CI
on:
push:
branches:
- '**'
branches-ignore:
- "dependabot/**"
schedule:
- cron: '0 10 * * *' # Once per day at 10am UTC
workflow_dispatch: # Manual trigger

2
.github/workflows/deploy-docs.yml

@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
name: Deploy Docs
on:
push:
branches-ignore: [ gh-pages ]
branches-ignore: [ "gh-pages", "dependabot/**" ]
tags: '**'
repository_dispatch:
types: request-build-reference # legacy

Loading…
Cancel
Save