- name
- forgejo
- description
- Interact with Forgejo using the
teaCLI. Usetea issue,tea pr,tea actions, andtea apifor issues, PRs, Actions, and advanced queries. - metadata
Forgejo Skill
Use the tea CLI to interact with Forgejo instances. The tea CLI is compatible with Forgejo.
Pull Requests
List open pull requests:
tea pulls --repo owner/repoCheck details of a PR:
tea pr 55 --repo owner/repoIssues
List open issues:
tea issues --repo owner/repoView an issue:
tea issue 123 --repo owner/repoActions (CI/CD)
List repository secrets:
tea actions secrets list --repo owner/repoList repository variables:
tea actions variables list --repo owner/repoAPI for Advanced Queries
The tea api command is useful for accessing data not available through other subcommands.
Get PR with specific fields (requires jq for filtering):
tea api repos/owner/repo/pulls/55 | jq '.title, .state, .user.login'Logins
To use tea with a specific Forgejo instance, you first need to add a login:
tea login add --name my-forgejo --url https://forgejo.example.com --token <your-token>Then you can use --login my-forgejo in your commands:
tea pulls --repo owner/repo --login my-forgejoList all configured logins:
tea logins