forked from wazuh/wazuh-docker
33 lines
748 B
YAML
33 lines
748 B
YAML
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."
|