Skip to content

Commit

Permalink
BUG - GH action workflows fixes (#1970)
Browse files Browse the repository at this point in the history
There are a couple of fixes in this PR:

1. The publish action has been failing due to the permissions needed by
the coverage action (see
https://github.com/pydata/pydata-sphinx-theme/actions/runs/10659690328/workflow).
This should add the missing permissions for that specific workflow -
note this is needed as when the workflow is not triggered from a Pull
Request then the coverage data is pushed to a branch in the repo (but
the main CI workflow still needs PR permissions 🤷🏽‍♀️, permissions are
weird).
2. There is a breaking change in the `upload-artifact` action which is
making our workflows fail now
  • Loading branch information
trallard committed Sep 3, 2024
1 parent 1897922 commit 7ed0ca4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
name: coverage-data-${{ matrix.python-version }}
path: .coverage
if-no-files-found: ignore
include-hidden-files: true

# Only run accessibility tests on the latest Python version (3.12) and Ubuntu
a11y-tests:
Expand Down Expand Up @@ -178,9 +179,11 @@ jobs:
runs: 3 # Multiple runs to reduce variance

coverage:
name: "check coverage"
name: "Check coverage"
needs: run-pytest
runs-on: ubuntu-latest
# avoid running this on schedule, releases, or workflow_call
if: github.event.workflow_run.event != 'schedule' && github.event.workflow_run.event != 'release' && github.event.workflow_run.event != 'workflow_call'
permissions:
contents: write
pull-requests: write
Expand Down Expand Up @@ -221,8 +224,6 @@ jobs:
- name: "Coverage comment 💬"
uses: py-cov-action/python-coverage-comment-action@v3
id: coverage_comment
# avoid running this on schedule or releases
if: github.event.workflow_run.event != 'schedule' && github.event.workflow_run.event != 'release'
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
# calls our general CI workflow (tests, build docs, etc.)
tests:
uses: ./.github/workflows/CI.yml
# needed for the coverage action
permissions:
contents: write
pull-requests: write

build-package:
name: "Build & verify PST package"
Expand Down

0 comments on commit 7ed0ca4

Please sign in to comment.