bitdeps/Rolling tag
Rolling Tag: Provides Immutable Revisions for container images
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| version | Version to callculate the rolling tag for. | yes | — |
| filter | Regular expression to filter version releases/tags. | no | "" |
| releases-only | Inspect only github releases, when set to false retrieves tags from github. | no | true |
| latest-github | Detect (by default) or get the latest tag from the latest github release. | no | false |
| latest-pin | Regular expression to pin the latest version. | no | — |
| token | Personal access token (auto-populated). It is used only because anonymous requests are rate-limited. It can be overridden to an empty value. | — | ${{ github.token }} |
Outputs
| name | description |
|---|---|
| tag | Value of the rolling tag for the given version. For example if version is v0.1.1, rolling tag can be v0.1.1 or v0.1.1-r1 etc. |
| version | Value of tag minus -r\d+ . |
| semver | Semver presents the version stripped until \d+.\d+.\d+ . |
| latest-tag | The current latest rolling tag (it can be the same with latest-version if not rolled yet). |
| latest-version | Same as latest-tag, but without -r\d+ suffix. |
| updates-latest | Specifies whether the new rolling tag should update the latest tag. |