mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
[GITEA] the ref of a scheduled action is always the default branch
Since a scheduled action is only run from the default branch, it cannot be anything else. Refs: https://codeberg.org/forgejo/forgejo/issues/1926 (cherry picked from commiteff0822856
) (cherry picked from commit2b1aa50bd1
) Conflicts: services/actions/notifier_helper.go https://codeberg.org/forgejo/forgejo/pulls/2075 (cherry picked from commit4ff3474fc0
) (cherry picked from commit07b8887031
)
This commit is contained in:
parent
16e337153b
commit
cbecdd618d
1 changed files with 1 additions and 1 deletions
|
@ -457,7 +457,7 @@ func handleSchedules(
|
|||
OwnerID: input.Repo.OwnerID,
|
||||
WorkflowID: dwf.EntryName,
|
||||
TriggerUserID: input.Doer.ID,
|
||||
Ref: ref,
|
||||
Ref: input.Repo.DefaultBranch,
|
||||
CommitSHA: commit.ID.String(),
|
||||
Event: input.Event,
|
||||
EventPayload: string(p),
|
||||
|
|
Loading…
Reference in a new issue