Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
merge_group:
# types: [ checks_requested ]
workflow_dispatch:
inputs:
run-version-check:
description: 'Test if the Version is valid'
required: true
type: boolean

concurrency:
group: checks-${{ github.event.pull_request.head.sha || github.sha }}
Expand Down Expand Up @@ -50,7 +55,8 @@ jobs:
# Ensure package.json version was bumped in PRs when relevant.
version-check:
name: "🏷️ Version bump check"
if: github.event_name != 'workflow_dispatch'
if: github.event_name != 'workflow_dispatch' ||
inputs.run-version-check
runs-on: ubuntu-latest
permissions:
contents: read
Expand Down
Loading