diff --git a/.github/workflows/semver-check.yml b/.github/workflows/semver-check.yml new file mode 100644 index 0000000..db5c8e7 --- /dev/null +++ b/.github/workflows/semver-check.yml @@ -0,0 +1,16 @@ +name: Repo SemVer check +on: + push: + tags: + - '*' + workflow_dispatch: + +jobs: + semver: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 + with: + fetch-depth: 0 # needed to get all tags + + - uses: jessehouwing/actions-semver-checker@c754e60c1f2838fefc4d4b34829e0317478b8006 # v1