Skip to content

Commit

Permalink
Rename job [integration]
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanking13 committed Jul 29, 2024
1 parent c824283 commit a9abb2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
with:
fail_ci_if_error: false

test-integration-test-trigger:
check-integration-test-trigger:
name: test-integration-test-trigger
runs-on: ubuntu-latest
outputs:
Expand All @@ -76,13 +76,13 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}

- id: check-integration-test-trigger
name: Check build trigger
name: Check integration test trigger
run: bash tools/check_integration_test_trigger.sh

integration-test:
runs-on: ubuntu-latest
needs: [test-integration-test-trigger]
if: needs.test-integration-test-trigger.outputs.run-integration-test
needs: [check-integration-test-trigger]
if: needs.check-integration-test-trigger.outputs.run-integration-test
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit a9abb2f

Please sign in to comment.