Skip to content

Commit 8c941b4

Browse files
committed
.github/workflows: Add the 'ci' workflow name to all e2e-related jobs
Signed-off-by: timflannagan <[email protected]>
1 parent 32c7773 commit 8c941b4

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: build
1+
name: ci
22
on:
33
pull_request:
44
paths:
55
- '**'
66
- '!doc/contributors/**'
77
- '!doc/design/**'
88
jobs:
9-
build:
9+
image:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Check out the repo

.github/workflows/e2e-kind.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: e2e
1+
name: ci
22
on:
33
pull_request:
44
paths:
@@ -8,7 +8,7 @@ on:
88
schedule:
99
- cron: '0 0 * * *' # daily to pick up releases
1010
jobs:
11-
run-local-kind:
11+
e2e-kind:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/e2e-minikube.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: e2e
1+
name: ci
22
on:
33
pull_request:
44
paths:
@@ -8,7 +8,7 @@ on:
88
schedule:
99
- cron: '0 0 * * *' # daily to pick up releases
1010
jobs:
11-
run-local-minikube:
11+
e2e-minikube:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: e2e-tests
1+
name: ci
22
on:
33
push:
44
branches:
@@ -8,7 +8,7 @@ on:
88
- '**'
99
- '!doc/**'
1010
jobs:
11-
run-e2e-tests:
11+
e2e-tests:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2

.github/workflows/unit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: unit
1+
name: ci
22
on:
33
push:
44
branches:

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: verify
1+
name: ci
22
on:
33
push:
44
branches:

0 commit comments

Comments
 (0)