fix: update CI workflows to enhance execution reliability and prevent security test leakage
This commit is contained in:
4
.github/workflows/codecov-upload.yml
vendored
4
.github/workflows/codecov-upload.yml
vendored
@@ -35,7 +35,7 @@ jobs:
|
||||
name: Backend Codecov Upload
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
if: ${{ inputs.run_backend != false }}
|
||||
if: ${{ github.event_name != 'workflow_dispatch' || inputs.run_backend != 'false' }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
@@ -69,7 +69,7 @@ jobs:
|
||||
name: Frontend Codecov Upload
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 15
|
||||
if: ${{ inputs.run_frontend != false }}
|
||||
if: ${{ github.event_name != 'workflow_dispatch' || inputs.run_frontend != 'false' }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
||||
|
||||
Reference in New Issue
Block a user