Searching for releases in a repository
- GitHub.comで、リポジトリのメインページにアクセスしてください。
- To the right of the list of files, click Releases.
- To search the repository's releases, in the search field at the top of the Releases page, type your query and press Enter.
Search syntax for searching releases in a repository
You can provide text in your search query which will be matched against the title, body, and tag of the repository's releases. You can also combine the following qualifiers to target specific releases.
修飾子 | サンプル |
---|---|
draft:true | draft:true will only match draft releases. |
draft:false | draft:false will only match published releases. |
prerelease:true | prerelease:true will only match pre-releases. |
prerelease:false | prerelease:false will only match releases that are not pre-releases. |
tag:TAG | tag:v1 matches a release with the v1 tag and any minor or patch versions within v1, such as v1.0, v1.2, and v1.2.5. |
created:DATE | created:2021 will match releases created during 2021. You can also provide date ranges. 詳しい情報については、「検索構文を理解する」を参照してください。 |