Disabled CI and CD for pull request between repos
This commit is contained in:
parent
689b7b3946
commit
3df95c8d59
2 changed files with 3 additions and 0 deletions
2
.github/workflows/cd.yml
vendored
2
.github/workflows/cd.yml
vendored
|
|
@ -30,10 +30,12 @@ jobs:
|
|||
# deploy
|
||||
|
||||
build:
|
||||
if: github.event.pull_request.head.repo.full_name == github.repository
|
||||
name: Build
|
||||
uses: ./.github/workflows/build.yml
|
||||
|
||||
deploy:
|
||||
if: github.event.pull_request.head.repo.full_name == github.repository
|
||||
name: Deploy
|
||||
needs: [ build ]
|
||||
uses: ./.github/workflows/deploy.yml
|
||||
|
|
|
|||
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
|
@ -5,6 +5,7 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
if: github.event.pull_request.head.repo.full_name == github.repository
|
||||
name: Docker build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Reference in a new issue