1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-20 09:18:36 +00:00

Show commit status for releases (#29149)

Fixes #29082

![grafik](https://github.com/go-gitea/gitea/assets/1666336/bb2ccde1-ee99-459d-9e74-0fb8ea79e8b3)
This commit is contained in:
KN4CK3R
2024-02-19 11:27:05 +01:00
committed by GitHub
parent a11ccc9fcd
commit 7e8ff70940
4 changed files with 184 additions and 181 deletions

View File

@@ -64,6 +64,9 @@ func createCommitStatus(ctx context.Context, job *actions_model.ActionRunJob) er
return fmt.Errorf("head of pull request is missing in event payload")
}
sha = payload.PullRequest.Head.Sha
case webhook_module.HookEventRelease:
event = string(run.Event)
sha = run.CommitSHA
default:
return nil
}