diff --git a/.changeset/README.md b/.changeset/README.md deleted file mode 100644 index e5b6d8d6..00000000 --- a/.changeset/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Changesets - -Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works -with multi-package repos, or single-package repos to help you version and publish your code. You can -find the full documentation for it [in our repository](https://github.com/changesets/changesets) - -We have a quick list of common questions to get you started engaging with this project in -[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md) diff --git a/.changeset/config.json b/.changeset/config.json deleted file mode 100644 index db3118a6..00000000 --- a/.changeset/config.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json", - "changelog": [ - "@changesets/changelog-github", - { "repo": "kareemmahlees/tablex" } - ], - "commit": false, - "fixed": [], - "linked": [["@tablex/core", "@tablex/lib", "@tablex/tailwind"]], - "access": "public", - "baseBranch": "master", - "updateInternalDependencies": "patch", - "ignore": ["@tablex/web"] -} diff --git a/.github/workflows/changeset.yml b/.github/workflows/changeset.yml deleted file mode 100644 index e4a4d1db..00000000 --- a/.github/workflows/changeset.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Changeset - -on: - push: - branches: - - master - workflow_dispatch: - -concurrency: ${{ github.workflow }}-${{ github.ref }} - -env: - HUSKY: 0 - -jobs: - version-pr: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - - uses: oven-sh/setup-bun@v2 - with: - bun-version: latest - - - name: Install dependencies - run: bun install --frozen-lock - - - name: Create Release Pull Request - uses: changesets/action@v1 - with: - title: "chore: version pump 🔖" - commit: "chore: version pump 🔖" - publish: bunx changeset tag - env: - GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}