Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RSDK-7885: Call networking tests trigger workflow in rc workflow #4115

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/releasecandidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,10 @@ jobs:
slack_webhook_url: ${{secrets.SLACK_WEBHOOK_URL}}
channel: '#team-devops'
name: 'Workflow Status'

run-sdk-integration-networking-tests:
needs: [staticbuild, appimage]
if: ${{ success() }}
uses: ./trigger-networking-tests.yml
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can also re-integrate this workflow back into the rc workflow, but this current set-up makes it reusable by other workflows if needed in the future

secrets:
REPO_READ_TOKEN: ${{ secrets.REPO_READ_TOKEN }}
3 changes: 3 additions & 0 deletions .github/workflows/trigger-networking-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Trigger Networking Tests in sdk-integration-tests

on:
workflow_call:
secrets:
REPO_READ_TOKEN:
required: true
workflow_dispatch:

jobs:
Expand Down
Loading