The Releases page lets you trigger release workflows on your repositories from a UI instead of from the GitHub Actions tab. The big win: the right workflow is preselected, the right inputs are validated, and every release shows up in one feed.
Click Add repository and pick one your GitHub App installation can see. Autopilot will:
.github/workflows/ that look like release pipelines (anything that has workflow_dispatch and matches common release naming).You can change the default workflow at any time, or remove a repository to take it off the list.
Open a repository's detail page and you'll see:
workflow_dispatch.inputs definition.Fill in the form and click Run release. Autopilot calls the GitHub workflow_dispatch API, then polls the run until it completes. The run shows up in your repository's Actions view as well.
If your release workflow uploads artifacts (binaries, build outputs, signed packages), Autopilot keeps a registry of them so you can find a specific release's outputs without trawling through Actions. Old release files are cleaned up on a cron schedule to keep storage reasonable.