Skip to content

Commit 42953ca

Browse files
Merge pull request #30 from SebastianScherer88/name-workflows
Name workflows
2 parents 5cd9fff + 97f9113 commit 42953ca

File tree

6 files changed

+6
-13
lines changed

6 files changed

+6
-13
lines changed

.github/workflows/docker.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: CI docker build & push
12
on:
23
pull_request:
34
types:

.github/workflows/integration-test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: CI integration test
12
on:
23
pull_request:
34
types:

.github/workflows/manual-platform-test.yaml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: Manual platform test
12
on:
23
workflow_dispatch:
34
inputs:
@@ -11,7 +12,6 @@ on:
1112
- "-m ddp"
1213
- "-m delete_pipelines"
1314
- "-m delete_flows"
14-
1515
python-version:
1616
default: "3.10" # "3.11"
1717
required: false
@@ -20,17 +20,10 @@ on:
2020
- "3.10"
2121
- "3.11"
2222
- "3.12"
23-
2423
deprovision-when-finished:
2524
default: false
2625
required: false
2726
type: boolean
28-
29-
secrets:
30-
AWS_ACCESS_KEY_ID:
31-
required: false
32-
AWS_SECRET_ACCESS_KEY:
33-
required: false
3427

3528
jobs:
3629
k8s-test:

.github/workflows/platform-test.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1+
name: Scheduled platform test
12
on:
23
schedule:
34
- cron: '0 1 */2 * *' # run this test at 1am every other day
4-
secrets:
5-
AWS_ACCESS_KEY_ID:
6-
required: false
7-
AWS_SECRET_ACCESS_KEY:
8-
required: false
95

106
jobs:
117
k8s-test:

.github/workflows/test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: Reusable test workflow
12
on:
23
workflow_call:
34
inputs:

.github/workflows/unit-test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: CI unit test
12
on:
23
pull_request:
34
types:

0 commit comments

Comments
 (0)