Skip to content

Commit d85edf6

Browse files
committed
Uniquely name completion jobs so we can require them
1 parent 7c2dfed commit d85edf6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
token: ${{ secrets.CODECOV_TOKEN }}
199199
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
200200

201-
completion:
201+
completion-ci:
202202
needs: build
203203
runs-on: ubuntu-latest
204204
if: always() # Run even if one matrix job fails

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
tags: |-
4949
adamtheturtle/vuforia-${{ matrix.image.name }}-mock:latest
5050
51-
completion:
51+
completion-docker:
5252
needs: build
5353
runs-on: ubuntu-latest
5454
if: always() # Run even if one matrix job fails

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- uses: pre-commit-ci/lite-action@v1.1.0
4444
if: always()
4545

46-
completion:
46+
completion-lint:
4747
needs: build
4848
runs-on: ubuntu-latest
4949
if: always() # Run even if one matrix job fails

.github/workflows/skip-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
9090

91-
completion:
91+
completion-skip-tests:
9292
needs: build
9393
runs-on: ubuntu-latest
9494
if: always() # Run even if one matrix job fails

.github/workflows/windows-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
token: ${{ secrets.CODECOV_TOKEN }}
7878
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
7979

80-
completion:
80+
completion-windows-ci:
8181
needs: build
8282
runs-on: ubuntu-latest
8383
if: always() # Run even if one matrix job fails

0 commit comments

Comments
 (0)