Skip to content

Commit

Permalink
Honor github workflow yaml schema (#169)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
hanefi authored and gurkanindibay committed Sep 1, 2021
1 parent 92ae18b commit 84de918
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/citus-package-all-platforms-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ env:

on:
push:
branches: "**"
branches:
- "**"

workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/package-cloud-download-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ on:
- cron: "30 0 * * *"

push:
branches: "**"
branches:
- "**"

workflow_dispatch:
jobs:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/packaging-methods-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ env:

on:
push:
branches: "**"
branches:
- "**"

workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-docker-image-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ name: Docker image creation tests

on:
push:
branches: "**"
branches:
- "**"

workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/statistic-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:
schedule:
- cron: "15 0 * * *"
push:
branches: "**"
branches:
- "**"

workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/statistic-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ env:
PACKAGE_CLOUD_ADMIN_API_TOKEN: ${{ secrets.PACKAGE_CLOUD_ADMIN_API_TOKEN }}
on:
push:
branches: "**"
branches:
- "**"

workflow_dispatch:

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tool-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ env:

on:
push:
branches: "**"
branches:
- "**"

workflow_dispatch:

Expand Down

0 comments on commit 84de918

Please sign in to comment.