diff options
| author | bors <bors@rust-lang.org> | 2020-02-24 08:20:10 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2020-02-24 08:20:10 +0000 |
| commit | c6ad3db8b5cad17bdacf9fae09ddabc6dc8f67d3 (patch) | |
| tree | 488eccae7a46230f7d6aeb58a35c1aa844969634 | |
| parent | fc5d0cc583cb1cd35d58fdb7f3e0cfa12dccd6c0 (diff) | |
| parent | ee91b5b2ddf00480dc43b9bab94a5a27ef369704 (diff) | |
| download | rust-c6ad3db8b5cad17bdacf9fae09ddabc6dc8f67d3.tar.gz rust-c6ad3db8b5cad17bdacf9fae09ddabc6dc8f67d3.zip | |
Auto merge of #5222 - JohnTitor:dont-deploy, r=flip1995
Do not run deploy action on other repos Usually, we don't have to run deploy action on other repos, let's ignore there. changelog: none
| -rw-r--r-- | .github/workflows/deploy.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index be40b27440d..5b7bec81999 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,6 +15,7 @@ env: jobs: deploy: runs-on: ubuntu-latest + if: github.repository == 'rust-lang/rust-clippy' steps: # Setup |
