Files
wehub-resource-sync 39a1aa29cb
plugin-validate / validate (push) Failing after 1s
secret-scan / gitleaks (push) Failing after 4s
chore: import upstream snapshot with attribution
2026-07-13 12:11:14 +08:00

27 lines
700 B
YAML

name: version-bump
# Backstop for contributors without the local pre-commit hook: every PR that
# modifies a plugin must bump that plugin's .claude-plugin/plugin.json version,
# otherwise already-installed users won't receive the change.
on:
pull_request:
permissions:
contents: read
jobs:
version-bump:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check plugin version bumps
env:
BASE_REF: ${{ github.base_ref }}
run: |
set -euo pipefail
git fetch --no-tags --depth=1 origin "$BASE_REF"
python3 scripts/version_bump.py --check --base "origin/$BASE_REF"