From b98ad581437720b2cab3d2ee5dc9f98877bb5b5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Meny?= Date: Thu, 16 May 2024 16:49:55 +0100 Subject: [PATCH] Allow dependabot auto merge --- .github/workflows/deploy-aws-staging.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-aws-staging.yml b/.github/workflows/deploy-aws-staging.yml index ebf5b3c3..1a9d1029 100644 --- a/.github/workflows/deploy-aws-staging.yml +++ b/.github/workflows/deploy-aws-staging.yml @@ -134,6 +134,7 @@ jobs: audit: name: Audit dependencies runs-on: ubuntu-latest + if: ${{ github.actor != 'dependabot[bot]' }} steps: - name: Checkout uses: actions/checkout@v4 @@ -176,6 +177,7 @@ jobs: deploy: name: Deploy runs-on: ubuntu-latest + if: ${{ github.actor != 'dependabot[bot]' }} environment: aws-staging needs: [lint, test, audit, brakeman-scan]