Skip to content

Commit 03d3327

Browse files
authored
Do not run quality checks for dependency bots (#177)
Signed-off-by: Federico Busetti <[email protected]>
1 parent 3dca9c7 commit 03d3327

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/python-code-style.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
jobs:
1515
format:
1616
runs-on: ubuntu-latest
17+
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
1718

1819
steps:
1920
- uses: actions/checkout@v4

.github/workflows/python-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
jobs:
1515
lint:
1616
runs-on: ubuntu-latest
17+
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
1718

1819
steps:
1920
- uses: actions/checkout@v4

.github/workflows/python-quality.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
jobs:
1515
quality:
1616
runs-on: ubuntu-latest
17+
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
1718

1819
steps:
1920
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)