mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
Merge pull request #2010 from o0HalfLife0o/master
only test build on pull request
This commit is contained in:
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@@ -97,7 +97,7 @@ jobs:
|
||||
|
||||
lanzou:
|
||||
needs: [ prepare, build ]
|
||||
if: ${{ needs.prepare.outputs.lanzou }}
|
||||
if: ${{ github.event_name != 'pull_request' && needs.prepare.outputs.lanzou == 'yes' }}
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
# 登录蓝奏云后在控制台运行document.cookie
|
||||
@@ -122,7 +122,7 @@ jobs:
|
||||
test_Branch:
|
||||
needs: [ prepare, build ]
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.actor == 'gedoor' }}
|
||||
if: ${{ github.event_name != 'pull_request' && github.actor == 'gedoor' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/download-artifact@v2
|
||||
@@ -144,7 +144,7 @@ jobs:
|
||||
|
||||
telegram:
|
||||
needs: [ prepare, build ]
|
||||
if: ${{ needs.prepare.outputs.telegram }}
|
||||
if: ${{ github.event_name != 'pull_request' && needs.prepare.outputs.telegram == 'yes' }}
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
|
||||
|
||||
Reference in New Issue
Block a user