You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: "chore(release): bump package.json to v${{ steps.resolved_version.outputs.version }}"
123
+
add-paths: |
124
+
package.json
125
+
package-lock.json
126
+
body: |
127
+
Bumps `package.json` and `package-lock.json` to `v${{ steps.resolved_version.outputs.version }}` to match the version just published to npm.
128
+
129
+
This PR is auto-generated by the `Publish Node.js Package` workflow after a successful `npm publish --provenance` so that the target branch tracks the published npm version rather than drifting behind it indefinitely. Historically this drift has confused contributors branching off `master` (e.g., `master` was at `0.16.5` while npm had published `v0.18.8`).
130
+
131
+
The commit message includes `[skip ci]` so merging this PR does not re-trigger workflows against the bump commit — the content was already CI-gated by the PR that merged into the tag.
132
+
labels: |
133
+
chore
134
+
release
135
+
draft: false
136
+
53
137
notify-dependents:
54
138
needs: publish
55
139
runs-on: ubuntu-24.04
@@ -62,4 +146,4 @@ jobs:
62
146
result-encoding: string
63
147
script: |
64
148
let release_version = `${{github.event.release.tag_name}}`
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
The Sistent Design System provides the open source building blocks to design and implement consistent, accessible, and delightful product experiences. Visit the <ahref="https://layer5.io/projects/sistent">project website</a> for more information.
4
4
5
+
## Naming conventions
6
+
7
+
Sistent components that surface API data (tables, form fields, charts) must use the camelCase-on-the-wire identifiers defined by the Meshery / Layer5 ecosystem contract. See the [identifier-naming contributor guide](https://github.com/meshery/schemas/blob/master/docs/identifier-naming-contributor-guide.md) in `meshery/schemas` — the reader-friendly 26-row naming directory with before/after and do/don't examples — before adding props, column keys, or query-arg types that map to a Meshery or Layer5 Cloud response shape.
0 commit comments