Skip to content

Commit

Permalink
Fix job name duplication
Browse files Browse the repository at this point in the history
It doesn't hurt technically speaking, but it is better that the job
names are unique across all GitHub Actions.
  • Loading branch information
HeavyWombat committed Dec 22, 2022
1 parent 5f6ef4e commit b67a65d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch: # Manual trigger

jobs:
build:
base-image-build:
if: ${{ github.repository == 'shipwright-io/build' }}
runs-on: ubuntu-latest
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mirror-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch: # Manual trigger

jobs:
build:
mirror-images:
if: ${{ github.repository == 'shipwright-io/build' }}
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notes-linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- main

jobs:
build:
release-note-linter:
name: Release Note Linter
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit b67a65d

Please sign in to comment.