@liblaf/actions 1.5.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,22 +1,18 @@
1
1
  # yaml-language-server: $schema=https://json.schemastore.org/github-action.json
2
2
 
3
3
  name: Next Version
4
- description: Determine the next release tag and version from git-cliff.
4
+ description: Resolve the release tag and version from git-cliff, honoring `Release-As` trailers.
5
5
  author: liblaf
6
6
 
7
- branding:
8
- icon: tag
9
- color: blue
10
-
11
7
  outputs:
12
8
  bumped:
13
- description: Whether the resolved tag matches the previous release version.
9
+ description: Whether the resolved tag differs from the previous release version.
14
10
  release-as:
15
- description: Whether a `Release-As` footer overrode the computed version.
11
+ description: Whether a `Release-As` trailer overrode the computed version.
16
12
  tag:
17
- description: The resolved next release tag, including the leading `v`.
13
+ description: The resolved release tag, including the leading `v`.
18
14
  version:
19
- description: The resolved next release version without the leading `v`.
15
+ description: The resolved release version without the leading `v`.
20
16
 
21
17
  runs:
22
18
  using: node24