Skip to content

Commit abc50ec

Browse files
authored
Honor github workflow yaml schema (#169)
See https://json.schemastore.org/github-workflow.json for the complete set of definitions. This commit fixes all the issues that are found on the default branch yaml files
1 parent 92ae18b commit abc50ec

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

.github/workflows/citus-package-all-platforms-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ env:
1111

1212
on:
1313
push:
14-
branches: "**"
14+
branches:
15+
- "**"
1516

1617
workflow_dispatch:
1718

.github/workflows/package-cloud-download-schedule.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ on:
1212
- cron: "30 0 * * *"
1313

1414
push:
15-
branches: "**"
15+
branches:
16+
- "**"
1617

1718
workflow_dispatch:
1819
jobs:

.github/workflows/packaging-methods-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ env:
55

66
on:
77
push:
8-
branches: "**"
8+
branches:
9+
- "**"
910

1011
workflow_dispatch:
1112

.github/workflows/publish-docker-image-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Docker image creation tests
22

33
on:
44
push:
5-
branches: "**"
5+
branches:
6+
- "**"
67

78
workflow_dispatch:
89

.github/workflows/statistic-schedule.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ on:
1010
schedule:
1111
- cron: "15 0 * * *"
1212
push:
13-
branches: "**"
13+
branches:
14+
- "**"
1415

1516
workflow_dispatch:
1617

.github/workflows/statistic-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ env:
1010
PACKAGE_CLOUD_ADMIN_API_TOKEN: ${{ secrets.PACKAGE_CLOUD_ADMIN_API_TOKEN }}
1111
on:
1212
push:
13-
branches: "**"
13+
branches:
14+
- "**"
1415

1516
workflow_dispatch:
1617

.github/workflows/tool-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ env:
88

99
on:
1010
push:
11-
branches: "**"
11+
branches:
12+
- "**"
1213

1314
workflow_dispatch:
1415

0 commit comments

Comments
 (0)