Shared GitHub Actions for the jitsi org — one repository, one subdirectory per reusable action, so CI policy lives in one reviewed place instead of being hand-copied across repos.
| Action | Purpose |
|---|---|
npm-version-bump |
Bump an npm package version from commit messages, escalating beyond a patch release only on deliberate conventional-commits markers. |
Pin by full commit SHA with the release tag in a trailing comment, matching the pinning convention used across jitsi workflows:
- uses: "jitsi/gh-actions/npm-version-bump@<sha>" # npm-version-bump/v1.0.0Actions are tagged per action: <action>/vX.Y.Z (e.g.
npm-version-bump/v1.0.0). A tag is a human-readable label — consumers pin
the SHA.
Create a subdirectory with action.yml and a README.md, cover its behavior
in .github/workflows/ci.yml, and add its directory to
.github/dependabot.yml so pinned inner actions get update proposals.
Reusable workflows (workflow_call) can live directly in
.github/workflows/.