Skip to content

Commit

Permalink
Update Wazuh dashboard workflow: standardize input descriptions and u…
Browse files Browse the repository at this point in the history
…se single quotes in YAML configuration
  • Loading branch information
guidomodarelli committed Nov 5, 2024
1 parent 635a2e0 commit c3431df
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/build_wazuh_dashboard_with_plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,47 +6,47 @@ on:
inputs:
system:
type: choice
description: "Package OS"
description: 'Package OS'
required: true
options:
- deb
- rpm
default: "deb"
default: 'deb'
architecture:
type: choice
description: "Package architecture"
description: 'Package architecture'
required: true
options:
- amd64
- x86_64
default: amd64
revision:
type: string
description: "Package revision"
description: 'Package revision'
required: true
default: "0"
default: '0'
reference_security_plugins:
type: string
description: "Branch/tag/commit of the wazuh-security-dashboards-plugin repository to build the security plugin"
description: 'Branch/tag/commit of the wazuh-security-dashboards-plugin repository to build the security plugin'
required: true
default: "master"
default: 'master'
reference_wazuh_plugins:
type: string
description: "Branch/tag/commit of the wazuh-dashboard-plugins repository to build the main plugins"
description: 'Branch/tag/commit of the wazuh-dashboard-plugins repository to build the main plugins'
required: true
default: "master"
default: 'master'
is_stage:
type: boolean
description: "Set production nomenclature"
description: 'Set production nomenclature'
required: true
default: false
checksum:
type: boolean
description: "Generate package checksum"
description: 'Generate package checksum'
required: true
default: false
id:
description: "ID used to identify the workflow uniquely."
description: 'ID used to identify the workflow uniquely.'
type: string
required: false

Expand All @@ -55,23 +55,23 @@ on:
system:
type: string
required: true
default: "deb"
default: 'deb'
architecture:
type: string
required: true
default: amd64
revision:
type: string
required: true
default: "0"
default: '0'
reference_security_plugins:
type: string
required: true
default: "master"
default: 'master'
reference_wazuh_plugins:
type: string
required: true
default: "master"
default: 'master'
is_stage:
type: boolean
required: true
Expand Down Expand Up @@ -208,8 +208,8 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'

- name: Download dashboard artifact
uses: actions/download-artifact@v4
Expand Down

0 comments on commit c3431df

Please sign in to comment.