Send webhook when tag is removed via Web UI (#14015)
* Send webhook when tag is removed via Web UI * Stray code
This commit is contained in:
		
							parent
							
								
									66379ba7ae
								
							
						
					
					
						commit
						53308de0bf
					
				
					 1 changed files with 9 additions and 0 deletions
				
			
		|  | @ -152,6 +152,15 @@ func DeleteReleaseByID(id int64, doer *models.User, delTag bool) error { | |||
| 			return fmt.Errorf("git tag -d: %v", err) | ||||
| 		} | ||||
| 
 | ||||
| 		notification.NotifyPushCommits( | ||||
| 			doer, repo, | ||||
| 			&repository.PushUpdateOptions{ | ||||
| 				RefFullName: git.TagPrefix + rel.TagName, | ||||
| 				OldCommitID: rel.Sha1, | ||||
| 				NewCommitID: git.EmptySHA, | ||||
| 			}, repository.NewPushCommits()) | ||||
| 		notification.NotifyDeleteRef(doer, repo, "tag", git.TagPrefix+rel.TagName) | ||||
| 
 | ||||
| 		if err := models.DeleteReleaseByID(id); err != nil { | ||||
| 			return fmt.Errorf("DeleteReleaseByID: %v", err) | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue