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

ci: better named gh jobs #2816

Merged
merged 4 commits into from
Aug 1, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permissions:
contents: read

jobs:
validate:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-ecr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
contents: read

jobs:
validate:
ecr-nightly-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-eks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
cancel-in-progress: true

jobs:
validate:
eks-nightly-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- "v*"

jobs:
build:
build-release:
runs-on: ubuntu-latest
permissions:
packages: write
Expand Down Expand Up @@ -78,9 +78,9 @@ jobs:
path: build/
retention-days: 1

validate:
validate-release:
runs-on: ubuntu-latest
needs: build
needs: build-release
steps:
# Checkout the repo and setup the tooling for this job
- name: Checkout
Expand Down Expand Up @@ -114,9 +114,9 @@ jobs:
if: always()
uses: ./.github/actions/save-logs

push:
create-release:
runs-on: ubuntu-latest
needs: validate
needs: validate-release
environment: release
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ on:
- cron: "32 2 * * 5"

jobs:
validate:
codeql-scan:
runs-on: ubuntu-latest
permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan-docs-and-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
contents: read

jobs:
validate:
validate-docs-and-schema:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ permissions:
contents: read

jobs:
validate:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-bigbang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ concurrency:
cancel-in-progress: true

jobs:
build:
build-bigbang:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -69,9 +69,9 @@ jobs:
path: build/
retention-days: 1

validate:
validate-bigbang:
runs-on: ubuntu-latest
needs: build
needs: build-bigbang
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:

jobs:
# Build the binary and init package
build:
build-e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -55,7 +55,7 @@ jobs:

validate-without-cluster:
runs-on: ubuntu-latest
needs: build
needs: build-e2e
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
# Run the tests on k3d
validate-k3d:
runs-on: ubuntu-latest
needs: build
needs: build-e2e
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
# Run the tests on k3s
validate-k3s:
runs-on: ubuntu-latest
needs: build
needs: build-e2e
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
# Run the tests on kind
validate-kind:
runs-on: ubuntu-latest
needs: build
needs: build-e2e
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
# Run the tests on minikube
validate-minikube:
runs-on: ubuntu-latest
needs: build
needs: build-e2e
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ concurrency:
cancel-in-progress: true

jobs:
validate:
validate-external:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:
cancel-in-progress: true

jobs:
validate:
validate-site:
runs-on: ubuntu-latest
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ concurrency:
cancel-in-progress: true

jobs:
validate:
validate-unit:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ concurrency:
cancel-in-progress: true

jobs:
build:
build-upgrade:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -52,9 +52,9 @@ jobs:
path: build/
retention-days: 1

validate:
validate-upgrade:
runs-on: ubuntu-latest
needs: build
needs: build-upgrade
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
Expand Down