mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
combine checks for semver
This commit is contained in:
parent
862d2ea6f4
commit
76929071b3
1 changed files with 1 additions and 2 deletions
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
|
@ -121,8 +121,7 @@ jobs:
|
|||
# However, this means we won't attempt to backport them, so you should be careful about using this label, as it will
|
||||
# likely make future backporting difficult
|
||||
semver:
|
||||
if: github.event.pull_request.draft == false
|
||||
if: ${{ !contains(github.event.pull_request.labels.*.name, 'breaking') }}
|
||||
if: github.event.pull_request.draft == false && !contains(github.event.pull_request.labels.*.name, 'breaking')
|
||||
name: Semver Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue