Skip to content

Commit

Permalink
Add skipTests for rc release
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Aug 30, 2024
1 parent 5fc887b commit 6ba2943
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/alpha-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,23 @@ on:
required: true
type: string
default: 'rc1'
skipTests:
description: 'Skip running tests'
required: false
type: boolean
default: false

jobs:
unit-tests:
if: ${{ inputs.skipTests == 'true' }}
uses: './.github/workflows/testing-unit.yaml'
secrets: inherit
integration-tests:
if: ${{ inputs.skipTests == 'true' }}
uses: './.github/workflows/testing-integration.yaml'
secrets: inherit
dependency-tests:
if: ${{ inputs.skipTests == 'true' }}
uses: './.github/workflows/testing-dependency.yaml'
secrets: inherit

Expand Down

0 comments on commit 6ba2943

Please sign in to comment.