From bd356dae52bc9e5bae8c6493f5038d91663dc484 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Wed, 21 Sep 2022 09:31:38 +0000 Subject: [PATCH] Exclude dependabot for some actions --- .github/workflows/linting.yaml | 1 + .github/workflows/pr-labels.yaml | 1 + .github/workflows/typing.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/linting.yaml b/.github/workflows/linting.yaml index a735521e..65d9dee8 100644 --- a/.github/workflows/linting.yaml +++ b/.github/workflows/linting.yaml @@ -8,6 +8,7 @@ jobs: precommit: name: ${{ matrix.name }} runs-on: ubuntu-latest + if: ${{ github.actor != 'dependabot[bot]' }} strategy: matrix: include: diff --git a/.github/workflows/pr-labels.yaml b/.github/workflows/pr-labels.yaml index e3e5d637..071e6d6e 100644 --- a/.github/workflows/pr-labels.yaml +++ b/.github/workflows/pr-labels.yaml @@ -10,6 +10,7 @@ jobs: pr_labels: name: Verify runs-on: ubuntu-latest + if: ${{ github.actor != 'dependabot[bot]' }} steps: - name: 🏷 Verify PR has a valid label uses: jesusvasquez333/verify-pr-label-action@v1.4.0 diff --git a/.github/workflows/typing.yaml b/.github/workflows/typing.yaml index 926dd59c..d0ef166e 100644 --- a/.github/workflows/typing.yaml +++ b/.github/workflows/typing.yaml @@ -11,6 +11,7 @@ jobs: mypy: name: mypy on Python ${{ matrix.python }} runs-on: ubuntu-latest + if: ${{ github.actor != 'dependabot[bot]' }} strategy: matrix: python: ["3.9", "3.10"]