Skip to content

Commit

Permalink
Testing
Browse files Browse the repository at this point in the history
Signed-off-by: Jamie Hale <[email protected]>
  • Loading branch information
jamshale committed Oct 7, 2024
1 parent 9751ee7 commit d647967
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/bdd-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ defaults:
jobs:
test:
runs-on: ubuntu-latest
if: (github.repository == 'jamshale/aries-cloudagent-python') && (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name != 'pull_request')
# Run on hyperledger and non-draft PRs or on non-PR events
if: (github.repository == 'jamshale/aries-cloudagent-python') && ((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name != 'pull_request'))
outputs:
is_release: ${{ steps.check_if_release.outputs.is_release }}
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/bdd-interop-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ defaults:
jobs:
test:
runs-on: ubuntu-latest
if: (github.repository == 'jamshale/aries-cloudagent-python') && (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name != 'pull_request')
# Run on hyperledger and non-draft PRs or on non-PR events
if: (github.repository == 'jamshale/aries-cloudagent-python') && ((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name != 'pull_request'))
outputs:
is_release: ${{ steps.check_if_release.outputs.is_release }}
steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/scenario-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ defaults:
jobs:
test:
runs-on: ubuntu-latest
if: (github.repository == 'jamshale/aries-cloudagent-python') && (github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name != 'pull_request')
# Run on hyperledger and non-draft PRs or on non-PR events
if: (github.repository == 'jamshale/aries-cloudagent-python') && ((github.event_name == 'pull_request' && github.event.pull_request.draft == false) || (github.event_name != 'pull_request'))
steps:
- name: checkout-acapy
uses: actions/checkout@v4
Expand Down

0 comments on commit d647967

Please sign in to comment.