You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git-artifacts: allow specifying repo/ref via repository_dispatch
With this change, users can specify the branch and repository from which
they want to build Git for Windows' artifacts. For example, this
invocation will build a portable Git from current core Git's `pu`
branch:
curl -i -H 'Authorization: token <PAT>' \
-H 'Accept: application/vnd.github.everest-preview+json' \
--request POST \
--data '{
"event_type": "git-artifacts",
"client_payload": {
"build_only": "portable-x86_64",
"repository": "git/git",
"ref": "refs/heads/pu"
}
}' https://api.github.com/repos/<user>/git/dispatches
Signed-off-by: Johannes Schindelin <[email protected]>
0 commit comments