Skip to content

Commit

Permalink
chore(repo): add renovate managers
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Bähler <[email protected]>
  • Loading branch information
oliverbaehler committed Feb 6, 2025
1 parent fa483de commit 1296a30
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,23 +81,23 @@ jobs:
with:
value: ${{ secrets.CODECOV_TOKEN }}
- name: Upload Report to Codecov
if: steps.checksecret.outputs.result == 'true'
if: ${{ steps.checksecret.outputs.result == 'true' }}
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
with:
file: ./coverage.out
fail_ci_if_error: true
verbose: true
coverage_upload:
name: "Code coverage report"
if: github.event_name == 'pull_request' # Do not run when workflow is triggered by push to main branch
if: github.event_name == 'pull_request'
runs-on: ubuntu-24.04
needs: unit_tests # Depends on the artifact uploaded by the "unit_tests" job
needs: unit_tests
permissions:
contents: read
actions: read # to download code coverage results from "test" job
pull-requests: write # write permission needed to comment on PR
actions: read
pull-requests: write
steps:
- uses: fgrosse/go-coverage-report@8c1d1a09864211d258937b1b1a5b849f7e4f2682 # Consider using a Git revision for maximum security
- uses: fgrosse/go-coverage-report@8c1d1a09864211d258937b1b1a5b849f7e4f2682
with:
coverage-artifact-name: "code-coverage" # can be omitted if you used this default value
coverage-file-name: "coverage.txt" #
coverage-artifact-name: "code-coverage"
coverage-file-name: "coverage.out" #
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint -s -c=.github/configs/lintconf.yaml .
run: yamllint -c=.github/configs/lintconf.yaml .
golangci:
name: lint
runs-on: ubuntu-24.04
Expand Down

0 comments on commit 1296a30

Please sign in to comment.