From a83feaa3c0a7bee01f8ce6aac73f81d0c5cb4883 Mon Sep 17 00:00:00 2001 From: Bryan Hundven Date: Wed, 8 Mar 2023 18:47:17 -0800 Subject: [PATCH] Minor yaml cleanup This doesn't require running all the pipelines so... [skip ci] Signed-off-by: Bryan Hundven --- .github/workflows/build-toolchains.yml | 1 + .github/workflows/continuous-integration-workflow.yml | 1 + .yamllint | 9 +++++++++ 3 files changed, 11 insertions(+) create mode 100644 .yamllint diff --git a/.github/workflows/build-toolchains.yml b/.github/workflows/build-toolchains.yml index 85879f6f..166fceeb 100644 --- a/.github/workflows/build-toolchains.yml +++ b/.github/workflows/build-toolchains.yml @@ -1,3 +1,4 @@ +--- name: Build toolchains on: diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index c5696f5f..ddebacc4 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -1,3 +1,4 @@ +--- name: CI on: diff --git a/.yamllint b/.yamllint new file mode 100644 index 00000000..0cd24420 --- /dev/null +++ b/.yamllint @@ -0,0 +1,9 @@ +--- +yaml-files: + - '*.yaml' + - '*.yml' + - '.yamllint' + +rules: + truthy: + allowed-values: ['TRUE', 'True', 'true', 'FALSE', 'False', 'false', 'YES', 'Yes', 'yes', 'NO', 'No', 'no', 'ON', 'On', 'on', 'OFF', 'Off', 'off']