Skip to content

Commit ac3580f

Browse files
committed
chore: update .gitignore and clean up publish workflow
- Added rules for IDE cursor files to .gitignore, excluding specific rules. - Removed the publish-check job from the GitHub Actions workflow to streamline the publishing process.
1 parent d5e379a commit ac3580f

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,3 @@ jobs:
6262
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
6363
run: |
6464
npx lerna publish --yes --exact --conventional-commits --changelog-preset conventionalcommits --include-merged-tags --create-release=github
65-
66-
publish-check:
67-
runs-on: ubuntu-22.04
68-
steps:
69-
- uses: actions/checkout@v3
70-
- uses: ./.github/actions/yarn
71-
- run: npx auto pr-check --url "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}?pr=${{github.event.pull_request.number}}"
72-
env:
73-
GH_TOKEN: ${{ secrets.ACTIONS_GITHUB_TOKEN || github.token }}
74-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ tmp
4242
*.swp
4343
*.swo
4444

45+
# IDE - Cursor
46+
.cursor/*
47+
!.cursor/rules
48+
4549
# Automatic report....json files
4650
report*.json
4751

0 commit comments

Comments
 (0)