From 20bcf27a4391f7157b3d77a09711c6e1c4e5b726 Mon Sep 17 00:00:00 2001 From: Dan Oved Date: Mon, 18 Sep 2023 10:28:13 -0700 Subject: [PATCH] remove duplicate ci task for changesets --- .github/workflows/changesets.yml | 4 ++-- .github/workflows/release.yml | 29 ----------------------------- 2 files changed, 2 insertions(+), 31 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/changesets.yml b/.github/workflows/changesets.yml index abd7813f9..5da6b3f93 100644 --- a/.github/workflows/changesets.yml +++ b/.github/workflows/changesets.yml @@ -1,4 +1,4 @@ -name: Release +name: Changesets Version and Release on: push: @@ -19,7 +19,7 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16 - cache: 'yarn' + cache: "yarn" - name: Install project dependencies run: yarn diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 2010334e7..000000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Release - -on: - push: - branches: - - main - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - release: - name: Release - runs-on: ubuntu-latest - steps: - - name: Checkout Repo - uses: actions/checkout@v3 - - - name: Setup Node.js 16 - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Install Dependencies - run: npm install - - - name: Create Release Pull Request - uses: changesets/action@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}