Skip to content

Commit

Permalink
Update automation.yml
Browse files Browse the repository at this point in the history
Removes CODECOV_TOKEN

Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
ghostwriter authored Jan 28, 2025
1 parent e96b44b commit db92a00
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/automation.yml
Original file line number Diff line number Diff line change
@@ -20,8 +20,6 @@ on:
- completed
workflow_call:
secrets:
CODECOV_TOKEN:
required: false
GPG_PRIVATE_KEY:
required: false
INFECTION_DASHBOARD_API_KEY:
@@ -67,7 +65,6 @@ jobs:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.matrix.outputs.matrix }}
codecov: ${{ env.CODECOV_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v4
@@ -145,17 +142,13 @@ jobs:
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
if: ${{ matrix.name == 'PHPUnit' }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
directory: ${{ github.workspace }}/.cache/phpunit/
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

- name: Upload test results to Codecov
if: ${{ matrix.name == 'PHPUnit' }}
uses: codecov/test-results-action@v1
with:
directory: ${{ github.workspace }}/.cache/phpunit/
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true

0 comments on commit db92a00

Please sign in to comment.