Skip to content

Commit

Permalink
Disables dependabot spending money completely (#12628)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalverra committed Mar 28, 2024
1 parent b2def74 commit a1bb52d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

golangci:
# We don't directly merge dependabot PRs, so let's not waste the resources
if: ${{ github.event_name == 'pull_request' || github.event_name == 'schedule' && github.actor != 'dependabot[bot]' }}
if: ${{ (github.event_name == 'pull_request' || github.event_name == 'schedule') && github.actor != 'dependabot[bot]' }}
name: lint
runs-on: ubuntu22.04-8cores-32GB
needs: [filter]
Expand Down

0 comments on commit a1bb52d

Please sign in to comment.