diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index c63a565..d6d1caa 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -1,4 +1,4 @@ -name: Create and publish container images +name: Create and publish container image on: push: @@ -49,4 +49,3 @@ jobs: push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} tags: ${{ steps.meta-core.outputs.tags }} labels: ${{ steps.meta-core.outputs.labels }} - diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 96dfdc2..f70c725 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -2,11 +2,13 @@ name: Coverage report on: pull_request: - # branches: - # - main + jobs: coverage: runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write steps: - uses: actions/checkout@v7 - name: Use Node.js 24.x @@ -21,6 +23,6 @@ jobs: run: | npx jest --coverage --coverageReporters json-summary - name: Jest Coverage Comment - uses: MishaKav/jest-coverage-comment@main + uses: MishaKav/jest-coverage-comment@v1.0.34 with: coverage-summary-path: ./coverage/coverage-summary.json