Skip to content

Commit

Permalink
Create semver-check.yml (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos committed Oct 20, 2023
1 parent 67ce89a commit 96c513d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/semver-check.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 96c513d

Please sign in to comment.