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."