From 7fd55fd20ccfb25cfa0ffa63af2523c52239e725 Mon Sep 17 00:00:00 2001 From: ritika-du Date: Mon, 28 Oct 2024 17:45:51 -0400 Subject: [PATCH] chore: add licensing --- =1.30.0 | 0 chart/Chart.yaml | 3 +++ chart/values.yaml | 3 +++ common/zarf.yaml | 3 +++ tasks.yaml | 3 +++ tests/auth.setup.ts | 5 +++++ tests/jenkins.test.ts | 5 +++++ tests/playwright.config.ts | 5 +++++ 8 files changed, 27 insertions(+) create mode 100644 =1.30.0 diff --git a/=1.30.0 b/=1.30.0 new file mode 100644 index 0000000..e69de29 diff --git a/chart/Chart.yaml b/chart/Chart.yaml index de1cb6a..1e37731 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -1,3 +1,6 @@ +# Copyright 2024 Defense Unicorns +# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial + apiVersion: v2 name: chart description: uds-jenkins-config diff --git a/chart/values.yaml b/chart/values.yaml index 69b7ad7..12dd7bc 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -1,3 +1,6 @@ +# Copyright 2024 Defense Unicorns +# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial + domain: "###ZARF_VAR_DOMAIN###" sso: diff --git a/common/zarf.yaml b/common/zarf.yaml index 7383e57..21e014b 100644 --- a/common/zarf.yaml +++ b/common/zarf.yaml @@ -1,3 +1,6 @@ +# Copyright 2024 Defense Unicorns +# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial + # yaml-language-server: $schema=https://raw.githubusercontent.com/defenseunicorns/zarf/main/zarf.schema.json kind: ZarfPackageConfig metadata: diff --git a/tasks.yaml b/tasks.yaml index cea9a85..ba799c1 100644 --- a/tasks.yaml +++ b/tasks.yaml @@ -1,3 +1,6 @@ +# Copyright 2024 Defense Unicorns +# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial + includes: - test: ./tasks/test.yaml - create: https://raw.githubusercontent.com/defenseunicorns/uds-common/v1.1.0/tasks/create.yaml diff --git a/tests/auth.setup.ts b/tests/auth.setup.ts index f015b72..234597f 100644 --- a/tests/auth.setup.ts +++ b/tests/auth.setup.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2024 Defense Unicorns + * SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial + */ + import { test as setup, expect } from '@playwright/test'; import { authFile } from './playwright.config'; import path from 'path'; diff --git a/tests/jenkins.test.ts b/tests/jenkins.test.ts index 939fa34..ef1af92 100644 --- a/tests/jenkins.test.ts +++ b/tests/jenkins.test.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2024 Defense Unicorns + * SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial + */ + import { test, expect, devices } from '@playwright/test'; import path from 'path'; diff --git a/tests/playwright.config.ts b/tests/playwright.config.ts index 5468a7b..ba4696c 100644 --- a/tests/playwright.config.ts +++ b/tests/playwright.config.ts @@ -1,3 +1,8 @@ +/** + * Copyright 2024 Defense Unicorns + * SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial + */ + import { defineConfig, devices } from '@playwright/test'; export const playwrightDir = '.playwright';