Ben Chuanlong Du's Blog

It is never too late to learn.

Manage GitHub Actions Using GitHub Rest API

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

In [ ]:
curl -L \
  -H "Accept: application/vnd.github+json" \
  -H "Authorization: Bearer <YOUR-TOKEN>" \
  -H "X-GitHub-Api-Version: 2022-11-28" \
  https://api.github.com/repos/OWNER/REPO/actions/artifacts

Comments