mirror of
https://github.com/nicolargo/glances.git
synced 2025-01-07 02:20:26 +03:00
Change workflow to disable some jobs on Pull Request
This commit is contained in:
parent
c6861a4728
commit
ca97eeefe2
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -15,13 +15,15 @@ jobs:
|
||||
uses: ./.github/workflows/test.yml
|
||||
needs: [quality]
|
||||
webui:
|
||||
if: ${{ always() }}
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: ./.github/workflows/webui.yml
|
||||
needs: [quality, test]
|
||||
cyber:
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: ./.github/workflows/cyber.yml
|
||||
needs: [quality, test, webui]
|
||||
build:
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: ./.github/workflows/build.yml
|
||||
secrets:
|
||||
TEST_PYPI_API_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }}
|
||||
|
Loading…
Reference in New Issue
Block a user