Skip to content

Commit

Permalink
Ci/disable dependabot push (#6509)
Browse files Browse the repository at this point in the history
  • Loading branch information
everettraven committed Jul 21, 2023
1 parent 799d6b1 commit 888ea7f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- '**'
- '!dependabot/**'
tags:
- 'v*'
- 'scorecard-kuttl/v*'
Expand Down Expand Up @@ -48,7 +49,7 @@ jobs:
go-version: 1.19

- name: gpg init
if: ${{ github.event_name != 'pull_request' && github.actor != 'dependabot[bot]' }}
if: ${{ github.event_name != 'pull_request' }}
run: .ci/gpg/create-keyring.sh
env:
GPG_PASSWORD: ${{ secrets.GPG_PASSWORD }}
Expand Down Expand Up @@ -82,7 +83,7 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: quay.io login
if: ${{ github.event_name != 'pull_request' && github.actor != 'dependabot[bot]' }}
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2
with:
username: ${{ secrets.QUAY_USERNAME }}
Expand Down Expand Up @@ -128,7 +129,7 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: quay.io login
if: ${{ github.event_name != 'pull_request' && github.actor != 'dependabot[bot]' }}
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2
with:
username: ${{ secrets.QUAY_USERNAME }}
Expand Down

0 comments on commit 888ea7f

Please sign in to comment.