diff --git a/.github/workflows/__all.yml b/.github/workflows/__all.yml index 69d76bf11..0b7cfe053 100644 --- a/.github/workflows/__all.yml +++ b/.github/workflows/__all.yml @@ -23,6 +23,18 @@ on: description: The version of Java to install required: false default: '17' + workflow_call: + inputs: + go-version: + type: string + description: The version of Go to install + required: false + default: '>=1.21.0' + java-version: + type: string + description: The version of Java to install + required: false + default: '17' jobs: all-platform-bundle: name: All-platform bundle diff --git a/.github/workflows/__go.yml b/.github/workflows/__go.yml index e8bf8837e..5b4727d66 100644 --- a/.github/workflows/__go.yml +++ b/.github/workflows/__go.yml @@ -18,6 +18,13 @@ on: description: The version of Go to install required: false default: '>=1.21.0' + workflow_call: + inputs: + go-version: + type: string + description: The version of Go to install + required: false + default: '>=1.21.0' jobs: go-custom-queries: name: 'Go: Custom queries' diff --git a/pr-checks/sync.py b/pr-checks/sync.py index efdcecf0c..cbfa7bca6 100755 --- a/pr-checks/sync.py +++ b/pr-checks/sync.py @@ -331,6 +331,9 @@ for collection_name in collections: 'workflow_dispatch': { 'inputs': combinedInputs }, + 'workflow_call': { + 'inputs': combinedInputs + } }, 'jobs': jobs }, output_stream)