rochet2/Filter tags
Find / filter / search / query repository tags with regex
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| regex | regex pattern to match a tag with | yes | — |
| flags | regex flags applied to the pattern (e.g. "i" for case-insensitive) | no | "" |
| owner | repository owner username or organization name. Defaults to the repository of the calling workflow | no | "" |
| repo | repository name. Defaults to the repository of the calling workflow | no | "" |
| token | github token used to authenticate API calls. Defaults to the workflow token. See https://docs.github.com/en/rest/overview/resources-in-the-rest-api#requests-from-github-actions | no | ${{ github.token }} |
| per_page | results per page to fetch, between [1,100] | no | 100 |
| page | page number to fetch from (ignored when paginate is true) | no | 1 |
| paginate | when true, fetch every tag across all pages (ignores the page input) | no | true |
| sort | sort order of output tags: asc, desc (alphabetical), semver, or semver-desc | no | asc |
Outputs
| name | description |
|---|---|
| tags | JSON array of the matched tags |
| count | number of matched tags |