Skip dependabot CI using branches
This commit is contained in:
9
.github/workflows/integration_test.yml
vendored
9
.github/workflows/integration_test.yml
vendored
@@ -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
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/release.linux.yml
vendored
2
.github/workflows/release.linux.yml
vendored
@@ -7,6 +7,8 @@ on:
|
|||||||
- opened
|
- opened
|
||||||
- synchronize
|
- synchronize
|
||||||
- reopened
|
- reopened
|
||||||
|
branches-ignore:
|
||||||
|
- "dependabot/**"
|
||||||
|
|
||||||
name: Release (Linux)
|
name: Release (Linux)
|
||||||
jobs:
|
jobs:
|
||||||
|
|||||||
Reference in New Issue
Block a user