actions-marketplace-validations/Is H5P library updated
Checks H5P library versions to see if the current branch is ahead of the main branch
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| github-token | GITHUB_TOKEN or a repo scoped PAT | no | ${{ github.token }} |
| fail-if-not-ahead | Fail this step if the current branch's version is not ahead of the main branch's version | no | false |
| working-directory | The working directory to run the command in | no | . |
Outputs
| name | description |
|---|---|
| is-ahead | True if the current branch's version is ahead of the main branch's version |
| are-equal | True if the current branch's version and the main branch's versions are equal |
| is-behind | True if the current branch's version is behind the main branch's version |
| current-version | The current version as a JSON string with `majorVersion`, `minorVersion`, and `patchVersion` properties |
| main-version | The main version as a JSON string with `majorVersion`, `minorVersion`, and `patchVersion` properties |
| current-version-formatted | The current version as a string on the format `vx.y.z` |
| main-version-formatted | The main version as a string on the format `vx.y.z` |