Skip to content

Commit

Permalink
fix(ci-standard-checks): fix check for usebeta (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmlanger authored Oct 25, 2024
1 parent 047da0f commit b4f89fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-standard-checks-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
with:
node-version: 20
- name: CI Standard Checks
if: !inputs.useBeta
if: ${{ inputs.useBeta == false }}
uses: Typeform/ci-standard-checks@v1
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
skipChecks: ${{ inputs.skipChecks }}
enableChecks: ${{ inputs.enableChecks }}
- name: CI Standard Checks @v1-beta
if: inputs.useBeta
if: ${{ inputs.useBeta == true }}
uses: Typeform/ci-standard-checks@v1-beta
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit b4f89fa

Please sign in to comment.