Skip to content

Commit 4fd66ab

Browse files
authored
Keep on fixing.
1 parent 6ed1ed0 commit 4fd66ab

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test-template.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ jobs:
5858
# Run vapor new and test the template for all combinations of options
5959
# Use normal "only one of this workflow per branch at a time, cancel stale jobs" concurrency
6060
test-new-and-build:
61-
if: ${{ !(github.event.pull_request.draft || false) }}
61+
if: ${{ inputs.is_called != "yes" && !(github.event.pull_request.draft || false) }}
6262
concurrency:
63-
group: ${{ github.workflow }}-${{ github.ref }}-test-new-and-build-${{ inputs.is_called || 'no' }}
63+
group: ${{ github.workflow }}-${{ github.ref }}-test-new-and-build
6464
cancel-in-progress: true
6565
strategy:
6666
fail-fast: false
@@ -125,9 +125,9 @@ jobs:
125125
# Run vapor new and build the container with Docker Compose for all combinations of options
126126
# Use normal "only one of this workflow per branch at a time, cancel stale jobs" concurrency
127127
test-new-and-container:
128-
if: ${{ !(github.event.pull_request.draft || false) }}
128+
if: ${{ inputs.is_called != "yes" && !(github.event.pull_request.draft || false) }}
129129
concurrency:
130-
group: ${{ github.workflow }}-${{ github.ref }}-test-new-and-container-${{ inputs.is_called || 'no' }}
130+
group: ${{ github.workflow }}-${{ github.ref }}-test-new-and-container
131131
cancel-in-progress: true
132132
strategy:
133133
fail-fast: false

0 commit comments

Comments
 (0)