From 9c9f1bccbcc2be659d4ef2400cf43c4be0744fff Mon Sep 17 00:00:00 2001 From: fcaffieri Date: Wed, 20 May 2026 17:32:06 -0300 Subject: [PATCH] Create WF into main branch --- .../workflows/check_integration_tools.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/check_integration_tools.yaml diff --git a/.github/workflows/check_integration_tools.yaml b/.github/workflows/check_integration_tools.yaml new file mode 100644 index 00000000..7db8ad7c --- /dev/null +++ b/.github/workflows/check_integration_tools.yaml @@ -0,0 +1,32 @@ +name: PR Check - Docker Integration Tests + +on: + workflow_dispatch: + inputs: + pr_head_ref: + description: 'Branch of wazuh-docker to test' + required: true + type: string + automation_reference: + description: 'Branch of wazuh-automation to use' + required: false + default: 'main' + type: string + deployment_type: + description: 'Deployment type to test' + required: true + type: choice + options: + - single-node + - multi-node + - both + +permissions: + id-token: write + contents: read + +jobs: + placeholder: + runs-on: ubuntu-latest + steps: + - run: echo "Workflow registered. Use workflow_dispatch selecting the feature branch."