Skip to content

Commit

Permalink
chore(infra): fix release triggers (#286)
Browse files Browse the repository at this point in the history
* chore(infra): fix release triggers

* chore(infra): add empty changeset
  • Loading branch information
barsukov authored Aug 30, 2024
1 parent 1abf467 commit 6320eb8
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .changeset/soft-garlics-do.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
---

chore(infra): fix release triggers
5 changes: 5 additions & 0 deletions .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
- opened
- synchronize
- reopened
# Trigger after the 'Release' workflow completes
workflow_run:
workflows: ["Release"]
types:
- completed

env:
HUSKY: 0
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ node_modules
npm-debug.log*
build
dist
vite.config.*.timestamp-*

# act artifacts needed for testing workflows
.secrets
Expand Down
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Ignore the .changeset directory
.changeset

# You can also ignore other files or directories if needed
node_modules
dist
build
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"lint": "turbo run lint",
"test": "turbo run test --concurrency=20",
"check-licenses": "npx license-checker-rseidelsohn --summary --excludePrivatePackages --onlyAllow 'MIT;ISC;Apache-2.0;BSD-2-Clause;BSD-3-Clause;BSD-4-Clause;CC-BY-3.0;CC-BY-4.0;BlueOak-1.0.0;CC0-1.0;0BSD;Python-2.0;BSD*;Unlicense'",
"clean": "turbo run clean && rm -rf node_modules && rm -rf ./**/*/node_modules",
"cleanVite": "find . -type f -name 'vite.config.*.timestamp-*' -ls -delete 2>/dev/null",
"clean": "npm run cleanVite && turbo run clean && rm -rf node_modules && rm -rf ./**/*/node_modules",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"",
"check-format": "prettier --config ./.prettierrc --check \"**/*.{js,jsx,ts,tsx,md}\" ",
Expand Down

0 comments on commit 6320eb8

Please sign in to comment.