From 9d4fdb9e8f44bdbd168baf167e89da44eff3f58c Mon Sep 17 00:00:00 2001 From: zamaz <71521611+zachariahmiller@users.noreply.github.com> Date: Wed, 30 Oct 2024 18:26:18 -0400 Subject: [PATCH] clean up old --- .github/workflows/ci-docs-shim.yaml | 41 ------------------ .github/workflows/release.yaml | 48 --------------------- .github/workflows/test.yaml | 65 ----------------------------- 3 files changed, 154 deletions(-) delete mode 100644 .github/workflows/ci-docs-shim.yaml delete mode 100644 .github/workflows/release.yaml delete mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/ci-docs-shim.yaml b/.github/workflows/ci-docs-shim.yaml deleted file mode 100644 index 06a268f4..00000000 --- a/.github/workflows/ci-docs-shim.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# # Copyright 2024 Defense Unicorns -# # SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial - -# name: CI Doc Shim - -# on: -# pull_request: -# paths: -# - "**.md" -# - "**.jpg" -# - "**.png" -# - "**.gif" -# - "**.svg" -# - adr/** -# - docs/** -# - .gitignore -# - renovate.json -# - .release-please-config.json -# - release-please-config.json -# - oscal-component.yaml -# - CODEOWNERS -# - LICENSE -# - CONTRIBUTING.md -# - SECURITY.md -# - config/renovate.json5 - -# # Permissions for the GITHUB_TOKEN used by the workflow. -# permissions: -# contents: read # Allows reading the content of the repository. - -# jobs: -# validate: -# strategy: -# matrix: -# type: [install, upgrade] -# flavor: [upstream, registry1, unicorn] -# uses: ./.github/workflows/callable-ci-docs-shim.yaml -# with: -# flavor: ${{ matrix.flavor }} -# type: ${{ matrix.type }} -# secrets: inherit # Inherits all secrets from the parent workflow. diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml deleted file mode 100644 index a07c38e0..00000000 --- a/.github/workflows/release.yaml +++ /dev/null @@ -1,48 +0,0 @@ -# # Copyright 2024 Defense Unicorns -# # SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial - -# name: Release - -# on: -# push: -# branches: -# - main - -# # Permissions for the GITHUB_TOKEN used by the workflow. -# permissions: -# contents: read # Allows reading the content of the repository. -# packages: read # Allows reading the content of the repository's packages. -# id-token: write - -# jobs: -# tag-new-version: -# permissions: write-all -# runs-on: ubuntu-latest -# outputs: -# release_created: ${{ steps.release-flag.outputs.release_created }} -# steps: -# - name: Create Release Tag -# id: tag -# uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3 -# - id: release-flag -# run: echo "release_created=${{ steps.tag.outputs.release_created || false }}" >> "$GITHUB_OUTPUT" - -# publish: -# permissions: -# contents: read # Allows reading the content of the repository. -# packages: write # Allows reading the content of the repository's packages. -# id-token: write -# needs: tag-new-version -# if: ${{ needs.tag-new-version.outputs.release_created == 'true' }} -# strategy: -# matrix: -# flavor: [upstream, registry1, unicorn] -# architecture: [amd64, arm64] -# exclude: -# - flavor: registry1 -# architecture: arm64 -# uses: ./.github/workflows/callable-publish.yaml -# with: -# flavor: ${{ matrix.flavor }} -# runsOn: ${{ matrix.architecture == 'arm64' && 'uds-swf-ubuntu-arm64-4-core' || 'ubuntu-latest' }} -# secrets: inherit # Inherits all secrets from the parent workflow. diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml deleted file mode 100644 index b855e173..00000000 --- a/.github/workflows/test.yaml +++ /dev/null @@ -1,65 +0,0 @@ -# # Copyright 2024 Defense Unicorns -# # SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial - -# name: Test - -# on: -# # This workflow is triggered on pull requests to the main branch. -# pull_request: -# # milestoned is added here as a workaround for release-please not triggering PR workflows (PRs should be added to a milestone to trigger the workflow). -# types: [milestoned, opened, reopened, synchronize] -# paths-ignore: -# - "**.md" -# - "**.jpg" -# - "**.png" -# - "**.gif" -# - "**.svg" -# - adr/** -# - docs/** -# - .gitignore -# - renovate.json -# - .release-please-config.json -# - release-please-config.json -# - CODEOWNERS -# - LICENSE -# - CONTRIBUTING.md -# - SECURITY.md -# - config/renovate.json5 - -# # Permissions for the GITHUB_TOKEN used by the workflow. -# permissions: -# contents: read # Allows reading the content of the repository. -# packages: read # Allows reading the content of the repository's packages. -# id-token: write - -# # Abort prior jobs in the same workflow / PR -# concurrency: -# group: test-${{ github.ref }} -# cancel-in-progress: true - -# jobs: -# check-flavor: -# runs-on: ubuntu-latest -# steps: -# - name: Checkout repository -# uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - -# - name: test-flavor -# uses: ./.github/actions/test-flavor -# id: test-flavor -# outputs: -# upgrade-flavors: ${{ steps.test-flavor.outputs.upgrade-flavors }} - -# validate: -# needs: check-flavor -# strategy: -# fail-fast: true -# matrix: -# type: [install, upgrade] -# flavor: [upstream, unicorn, registry1] -# uses: ./.github/workflows/callable-test.yaml -# with: -# upgrade-flavors: ${{ needs.check-flavor.outputs.upgrade-flavors }} -# flavor: ${{ matrix.flavor }} -# type: ${{ matrix.type }} -# secrets: inherit # Inherits all secrets from the parent workflow.