From 4baa3547323d0f5ab8ff354419437c2f50bff05d Mon Sep 17 00:00:00 2001 From: Justin Zhang Date: Thu, 25 Apr 2024 19:01:42 -0400 Subject: [PATCH] Remove validate --- .github/workflows/cdkactions_validate.yaml | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/cdkactions_validate.yaml diff --git a/.github/workflows/cdkactions_validate.yaml b/.github/workflows/cdkactions_validate.yaml deleted file mode 100644 index 73834d7..0000000 --- a/.github/workflows/cdkactions_validate.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Generated by cdkactions. Do not modify -# Generated as part of the 'validate' stack. -name: Validate cdkactions manifests -on: push -jobs: - validate: - name: Validate cdkactions manifests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - token: ${{ github.token }} - - name: Validate manifests - run: |- - cd .github/cdk - yarn install - yarn build - git --no-pager diff ../workflows - git diff-index --quiet HEAD -- ../workflows - - name: Push updated manifests - if: "false" - run: |- - cd .github/workflows - git config user.name github-actions - git config user.email github-actions[bot]@users.noreply.github.com - git add . - git commit -m "Update cdkactions manifests" || exit 0 - git push