Skip to content

Commit

Permalink
Allow dev-workflow-p1.yml to be run manually
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Feb 16, 2024
1 parent aee1d8e commit b5cdf54
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/dev-workflow-p1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
- review_requested
branches:
- dev*
# So we can test changes to the test-server-rc workflow
workflow_dispatch:

jobs:
test-with-server-release:
Expand All @@ -20,6 +22,6 @@ jobs:

test-with-server-rc:
needs: test-with-server-release
if: ${{ contains(github.event.pull_request.labels.*.name, 'new-server-features') }}
if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'new-server-features') }}
uses: ./.github/workflows/test-server-rc.yml
secrets: inherit

0 comments on commit b5cdf54

Please sign in to comment.