Skip to content

Commit

Permalink
Don't Deploy to EKS if Github Actor is Dependabot (#217)
Browse files Browse the repository at this point in the history
* Also bump Helm, Helmfile, and Tailscale
  • Loading branch information
rblaine95 authored Jan 31, 2024
1 parent d8cb094 commit 7aae6a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ jobs:
checks: read
runs-on: ubuntu-latest
env:
TAILSCALE_VERSION: 1.52.1
HELMFILE_VERSION: v0.158.1
HELM_VERSION: v3.13.1
TAILSCALE_VERSION: 1.58.2
HELMFILE_VERSION: v0.161.0
HELM_VERSION: v3.14.0

concurrency:
group: ${{ github.workflow }}-deploy-${{ github.event_name == 'release' && 'prod' || 'dev' }}
Expand All @@ -158,7 +158,7 @@ jobs:

# Don't deploy if triggering actor is dependabot
# Only deploy if PR is Ready for Review
if: github.triggering_actor != 'dependabot[bot]' && github.event.pull_request.draft == false
if: github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 7aae6a9

Please sign in to comment.