diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index be1df5817..cf1ec3b1f 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -56,3 +56,4 @@ jobs: with: files: ./packages/${{ inputs.package }}/coverage/lcov.info flags: ${{ inputs.package }}-e2e,${{ inputs.package }} + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 78b2c0212..6adb646a5 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -46,3 +46,4 @@ jobs: with: files: ./packages/${{ inputs.package }}/coverage/lcov.info flags: ${{ inputs.package }}-integration,${{ inputs.package }} + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/lib-check.yml b/.github/workflows/lib-check.yml index d6bcaa0a8..02ee98d43 100644 --- a/.github/workflows/lib-check.yml +++ b/.github/workflows/lib-check.yml @@ -137,6 +137,7 @@ jobs: name: Bot needs: [build-dist, build-type-and-test] uses: ./.github/workflows/unit-test.yml + secrets: inherit with: package: bot # https://github.com/orgs/community/discussions/12835 @@ -152,6 +153,7 @@ jobs: name: Bot needs: bot-unit-test uses: ./.github/workflows/other-runtime-unit-test.yml + secrets: inherit with: package: bot @@ -159,12 +161,14 @@ jobs: name: Discordeno needs: [build-dist, build-type-and-test] uses: ./.github/workflows/unit-test.yml + secrets: inherit with: package: discordeno discordeno-other-runtime-test: name: Discordeno needs: discordeno-unit-test uses: ./.github/workflows/other-runtime-unit-test.yml + secrets: inherit with: package: discordeno @@ -172,18 +176,21 @@ jobs: name: Gateway needs: [build-dist, build-type-and-test] uses: ./.github/workflows/unit-test.yml + secrets: inherit with: package: gateway gateway-integration-test: name: Gateway needs: build-dist uses: ./.github/workflows/integration-test.yml + secrets: inherit with: package: gateway gateway-other-runtime-test: name: Gateway needs: [gateway-unit-test, gateway-integration-test] uses: ./.github/workflows/other-runtime-unit-test.yml + secrets: inherit with: package: gateway @@ -191,6 +198,7 @@ jobs: name: Rest needs: [build-dist, build-type-and-test] uses: ./.github/workflows/unit-test.yml + secrets: inherit with: package: rest # https://github.com/orgs/community/discussions/12835 @@ -206,6 +214,7 @@ jobs: name: Rest needs: rest-unit-test uses: ./.github/workflows/other-runtime-unit-test.yml + secrets: inherit with: package: rest @@ -213,12 +222,14 @@ jobs: name: Types needs: [build-dist, build-type-and-test] uses: ./.github/workflows/unit-test.yml + secrets: inherit with: package: types types-other-runtime-test: name: Types needs: types-unit-test uses: ./.github/workflows/other-runtime-unit-test.yml + secrets: inherit with: package: types @@ -226,11 +237,13 @@ jobs: name: Utils needs: [build-dist, build-type-and-test] uses: ./.github/workflows/unit-test.yml + secrets: inherit with: package: utils utils-other-runtime-test: name: Utils needs: utils-unit-test uses: ./.github/workflows/other-runtime-unit-test.yml + secrets: inherit with: package: utils diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 60006f837..7e5bd67bc 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -52,3 +52,4 @@ jobs: with: files: ./packages/${{ inputs.package }}/coverage/lcov.info flags: ${{ inputs.package }}-unit,${{ inputs.package }} + token: ${{ secrets.CODECOV_TOKEN }}