Show commit status for releases (#29149)

Fixes #29082

![grafik](bb2ccde1-ee99-459d-9e74-0fb8ea79e8b3)

(cherry picked from commit 7e8ff709401d09467c3eee7c69cd9600d26a97a3)
This commit is contained in:
KN4CK3R 2024-02-19 11:27:05 +01:00 committed by Earl Warren
parent b1d66f50fb
commit 369fe56966
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
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
}