Skip to content

Commit

Permalink
Reduce log output during Actions workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpfleming committed Oct 23, 2023
1 parent 46275f1 commit be306b2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
need_ci: ${{ (steps.preflight.outputs.need_ci == 'true') || (steps.preflight.outputs.need_image == 'true') }}
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- id: get_versions
run: cat workflow-support/versions.json >> $GITHUB_OUTPUT
- id: details
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
need_lint: ${{ steps.preflight.outputs.need_lint == 'true' }}
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- id: details
uses: kpfleming/composite-actions/image-details@v2
with:
Expand All @@ -32,4 +34,6 @@ jobs:
image: ${{ needs.preflight.outputs.image_base }}:main
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: kpfleming/composite-actions/lint-tox@v2
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
image: ${{ needs.image_details.outputs.image_base }}:main
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: kpfleming/composite-actions/galaxy-publish-tox@v2
with:
galaxy_token: ${{ secrets.ANSIBLE_GALAXY_TOKEN }}
Expand All @@ -41,6 +43,7 @@ jobs:
with:
ref: docsite
path: docsite
show-progress: false
- run: docsite/workflow-support/make_docs.sh
- uses: EndBug/add-and-commit@v9
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
image: ${{ inputs.image }}
steps:
- uses: actions/checkout@v4
with:
show-progress: false
- uses: kpfleming/composite-actions/ci-tox@v2
with:
python: ${{ inputs.python }}

0 comments on commit be306b2

Please sign in to comment.