diff options
author | Nick Meyer <nick@e3b0c442.io> | 2019-06-04 20:17:17 -0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-06-05 09:17:17 +0800 |
commit | 5d3177dbb650b64eed4a1f35c7e469438270b90b (patch) | |
tree | 5e11565825cc8cbf8d11d63135a625fa0274640c /.drone.yml | |
parent | 8bf405986e9940be863088e65903d4e2e2fe84ce (diff) | |
download | gitea-5d3177dbb650b64eed4a1f35c7e469438270b90b.tar.gz gitea-5d3177dbb650b64eed4a1f35c7e469438270b90b.zip |
Exclude pull_request from fetch-tags step, fixes #7108 (#7120)
Signed-off-by: Nick Meyer <nick@e3b0c442.io>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index 6d9cde5ca9..0b8c8422b6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,6 +7,9 @@ pipeline: image: docker:git commands: - git fetch --tags --force + when: + event: + exclude: [ pull_request ] download_translations: image: jonasfranz/crowdin |