diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index c5ad4d6..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: release - -on: - workflow_dispatch: - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -jobs: - release: - name: release - runs-on: ubuntu-latest - permissions: write-all - steps: - - name: Checkout Repo - uses: actions/checkout@v2 - with: - # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits - fetch-depth: 0 - - - name: Setup Node - uses: actions/setup-node@v2 - with: - node-version: 16.x - - - name: Install Dependencies - run: yarn - - - name: Create Release Pull Request - uses: changesets/action@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}