From a3e3cfe5b8187cecb318c6e6dab31f113306e317 Mon Sep 17 00:00:00 2001 From: dtfranz Date: Tue, 8 Aug 2023 16:20:16 -0700 Subject: [PATCH] Remove Manifests Workflow The workflow is causing more trouble than it's worth at the moment, particularly for dependabot. Signed-off-by: dtfranz --- .github/workflows/manifests.yaml | 35 -------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/manifests.yaml diff --git a/.github/workflows/manifests.yaml b/.github/workflows/manifests.yaml deleted file mode 100644 index b7c853f3..00000000 --- a/.github/workflows/manifests.yaml +++ /dev/null @@ -1,35 +0,0 @@ -name: manifests-diff - -on: - pull_request: - merge_group: - push: - branches: - - main - -jobs: - manifests-diff: - runs-on: ubuntu-latest - steps: - - name: Checkout target branch of repository - uses: actions/checkout@v3 - with: - ref: ${{ github.base_ref }} - - name: Setup Go - uses: actions/setup-go@v4 - with: - go-version-file: "go.mod" - - name: Generate rukpak.yaml installation manifest from target branch - run: make quickstart - - name: Rename manifest file for later comparison - run: mv rukpak.yaml ${{ github.base_ref }}.yaml - - name: Checkout PR branch - uses: actions/checkout@v3 - with: - clean: false # Preserve the manifest we generated earlier - - name: Generate rukpak.yaml installation manifest from source branch - run: make quickstart - - name: Rename manifest file - run: mv rukpak.yaml ${{ github.head_ref }}.yaml - - name: Compare generated manifests of source and target branch - run: diff ${{ github.base_ref }}.yaml ${{ github.head_ref }}.yaml