Skip dependabot CI using branches

This commit is contained in:
Ben Johnson
2022-01-31 13:01:24 -07:00
parent a2cf2e260b
commit ee77592d7e
2 changed files with 6 additions and 5 deletions

View File

@@ -1,11 +1,13 @@
name: Integration Tests name: Integration Tests
on: pull_request on:
pull_request:
branches-ignore:
- "dependabot/**"
jobs: jobs:
s3-integration-test: s3-integration-test:
name: Run S3 Integration Tests name: Run S3 Integration Tests
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
if: github.actor != 'dependabot'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -31,7 +33,6 @@ jobs:
gcp-integration-test: gcp-integration-test:
name: Run GCP Integration Tests name: Run GCP Integration Tests
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
if: github.actor != 'dependabot'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -59,7 +60,6 @@ jobs:
abs-integration-test: abs-integration-test:
name: Run Azure Blob Store Integration Tests name: Run Azure Blob Store Integration Tests
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
if: github.actor != 'dependabot'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -82,7 +82,6 @@ jobs:
sftp-integration-test: sftp-integration-test:
name: Run SFTP Integration Tests name: Run SFTP Integration Tests
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
if: github.actor != 'dependabot'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@@ -7,6 +7,8 @@ on:
- opened - opened
- synchronize - synchronize
- reopened - reopened
branches-ignore:
- "dependabot/**"
name: Release (Linux) name: Release (Linux)
jobs: jobs: