Skip to content

Commit 25be53e

Browse files
committed
Add option to skip semver checks
1 parent fdf3128 commit 25be53e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/create-release-pr.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ on:
1818
See https://github.com/crate-ci/cargo-release/blob/7527065e413b9625ccb09800b765f6c49d011c79/docs/reference.md#bump-level for more details.
1919
required: true
2020
type: string
21+
skip_semver:
22+
description: Skip SemVer Checks, only use this for new releases
23+
required: false
24+
type: boolean
2125

2226
env:
2327
RUSTUP_TOOLCHAIN: stable
@@ -76,5 +80,5 @@ jobs:
7680
version: ${{ inputs.version }}
7781
crate-name: ${{ inputs.crate || 'neo4rs' }}
7882
pr-title: "Set <%= crates.length === 1 ? crates[0].name : '' %> version to <%= version.actual %>"
79-
check-semver: true
83+
check-semver: ${{ inputs.skip_semver != true }}
8084
base-branch: main

0 commit comments

Comments
 (0)