diff --git a/.github/workflows/add-focused-issue-to-project.yml b/.github/workflows/add-focused-issue-to-project.yml index 28525a7..5d2c0d5 100644 --- a/.github/workflows/add-focused-issue-to-project.yml +++ b/.github/workflows/add-focused-issue-to-project.yml @@ -6,8 +6,6 @@ on: jobs: add-focused-issue-to-project: uses: WillBooster/reusable-workflows/.github/workflows/add-issue-to-project.yml@main - with: - label: 'focused :dart:' secrets: GH_PROJECT_URL: https://github.com/orgs/WillBooster/projects/7 GH_TOKEN: ${{ secrets.PUBLIC_GH_BOT_PAT }} diff --git a/.github/workflows/add-ready-issue-to-project.yml b/.github/workflows/add-ready-issue-to-project.yml index 0f143bb..d429c7e 100644 --- a/.github/workflows/add-ready-issue-to-project.yml +++ b/.github/workflows/add-ready-issue-to-project.yml @@ -7,7 +7,8 @@ jobs: add-ready-issue-to-project: uses: WillBooster/reusable-workflows/.github/workflows/add-issue-to-project.yml@main with: - label: 'ready :rocket:' + labeled: 'ready :rocket:' + labelOperator: OR secrets: GH_PROJECT_URL: https://github.com/orgs/WillBoosterLab/projects/5 GH_TOKEN: ${{ secrets.PUBLIC_GH_BOT_PAT }} diff --git a/package.json b/package.json index d28d467..b50794d 100644 --- a/package.json +++ b/package.json @@ -22,11 +22,12 @@ "build": "build-ts app -m cjs --inline VERSION && mv dist/index.js dist/index.cjs && cp dist/index.cjs .yarn/plugins/plugin-auto-install.cjs", "cleanup": "yarn format && yarn lint-fix", "format": "sort-package-json && yarn prettify", - "postinstall": "husky", + "postinstall": "husky || true", "lint": "eslint --color \"./{scripts,src,tests}/**/*.{cjs,cts,js,jsx,mjs,mts,ts,tsx}\"", "lint-fix": "yarn lint --fix", "prepack": "pinst --disable", "postpack": "pinst --enable", + "prepare": "husky || true", "prettify": "prettier --cache --color --write \"**/{.*/,}*.{cjs,css,cts,htm,html,js,json,json5,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/test-fixtures/**\"", "typecheck": "tsc --noEmit --Pretty" },