mumrah commented on PR #17204:
URL: https://github.com/apache/kafka/pull/17204#issuecomment-2360921500
Yes, using `gh` should work. The docs link I posted has an example of
creating a tag with `gh api`
```
gh api \
--method POST \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
/repos/OWNER/REPO/git/tags \
-f "tag=v0.0.1" -f "message=initial version" -f
"object=c3d0be41ecbe669545ee3e94d31ed9a4bc91ee3c" -f "type=commit" -f
"tagger[name]=Monalisa Octocat" -f "tagger[email][email protected]" -f
"tagger[date]=2011-06-17T14:53:35-07:00"
```
We're using this tool to create custom statuses on PRs here
https://github.com/apache/kafka/blob/trunk/.github/actions/gh-api-update-status/action.yml#L55-L59
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]