Skip to content

Commit

Permalink
trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 26, 2024
1 parent d9974e3 commit d26420a
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- id: check
run: |
if [[ -n "${{ secrets[inputs.secret_name] }}" ]]; then
echo "has-secrets=1" >> "$GITHUB_ENV"
echo "has-secrets=true" >> "$GITHUB_ENV"
echo "Secret for ${{ inputs.secret_name }} is available"
else
echo "Secret for ${{ inputs.secret_name }} is NOT available"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chromatic-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
secrets: inherit
chromatic-deployment:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
# Operating System
runs-on: ubuntu-latest
# Job steps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
secrets: inherit
docker-release:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
name: docker-release
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ephemeral-env-pr-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
secrets: inherit
ephemeral-env-cleanup:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
name: Cleanup ephemeral envs
runs-on: ubuntu-latest
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ephemeral-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
secrets: inherit
ephemeral_env_comment:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
name: Evaluate ephemeral env comment trigger (/testenv)
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
docker_ephemeral_env:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
name: Push ephemeral env Docker image to ECR
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
secrets: inherit
license_check:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
name: License Check
runs-on: ubuntu-20.04
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
secrets: inherit
build:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
name: Bump version and publish package(s)

runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/superset-applitool-cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
secrets: inherit
cypress-applitools:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
runs-on: ubuntu-20.04
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/superset-applitools-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
secrets: inherit
cron:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
runs-on: ubuntu-20.04
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/superset-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
secrets: inherit
build-deploy:
needs: check-secrets
if: needs.check-secrets.outputs.has-secrets == '1'
if: needs.check-secrets.outputs.has-secrets == 'true'
name: Build & Deploy
runs-on: ubuntu-20.04
defaults:
Expand Down

0 comments on commit d26420a

Please sign in to comment.