Skip to content

Commit

Permalink
feat: debug allow
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Oct 2, 2024
1 parent 67c70ed commit 1bd76bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
--autodiscover=true \
--autodiscover-filter='taiga-family/*' \
--cache-dir='.renovate' \
--allowed-env='ws' \
--allowed-post-upgrade-commands='.*'
concurrency:
Expand Down
7 changes: 7 additions & 0 deletions default.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"timezone": "Europe/Moscow",
"commitMessageLowerCase": "auto",
"semanticCommits": "enabled",
"allowedEnv": ["X-*", "ws"],
"allowedPostUpgradeCommands": [".*"],
"onboarding": false,
"allowCustomCrateRegistries": true,
"allowScripts": true,
Expand Down Expand Up @@ -142,6 +144,7 @@
"commands": [
"rm -rf package-lock.json node_modules **/node_modules",
"export ws=$(node -p '!!require(`./package.json`).workspaces')",
"echo 'Enabled workspace:' && echo $ws",
"npm i -ws=$ws --include-workspace-root=$ws --verbose && npm i -ws=$ws --include-workspace-root=$ws",
"git add . && npx lint-staged --allow-empty || true"
],
Expand All @@ -160,6 +163,7 @@
"npx nx repair || true",
"rm -rf package-lock.json node_modules **/node_modules",
"export ws=$(node -p '!!require(`./package.json`).workspaces')",
"echo 'Enabled workspace:' && echo $ws",
"npm i -ws=$ws --include-workspace-root=$ws --verbose && npm i -ws=$ws --include-workspace-root=$ws",
"git add . && npx lint-staged --allow-empty || true"
],
Expand Down Expand Up @@ -187,6 +191,7 @@
"npx nx migrate --run-migrations --ifExists && rm -f migrations.json || true",
"rm -rf package-lock.json node_modules **/node_modules",
"export ws=$(node -p '!!require(`./package.json`).workspaces')",
"echo 'Enabled workspace:' && echo $ws",
"npm i -ws=$ws --include-workspace-root=$ws --verbose && npm i -ws=$ws --include-workspace-root=$ws",
"git add . && npx lint-staged --allow-empty || true"
],
Expand All @@ -210,6 +215,7 @@
"npx nx migrate @taiga-ui/cdk --from=@taiga-ui/cdk@{{{lookup (split currentVersion '.') 0}}} --to=@taiga-ui/cdk@{{{lookup (split newVersion '.') 0}}} || true",
"npx nx migrate --run-migrations --ifExists && rm -f migrations.json || true",
"rm -rf package-lock.json node_modules **/node_modules",
"echo 'Enabled workspace:' && echo $ws",
"export ws=$(node -p '!!require(`./package.json`).workspaces')",
"npm i -ws=$ws --include-workspace-root=$ws --verbose && npm i -ws=$ws --include-workspace-root=$ws",
"git add . && npx lint-staged --allow-empty || true"
Expand All @@ -230,6 +236,7 @@
"commands": [
"rm -rf package-lock.json node_modules **/node_modules",
"export ws=$(node -p '!!require(`./package.json`).workspaces')",
"echo 'Enabled workspace:' && echo $ws",
"npm i -ws=$ws --include-workspace-root=$ws --verbose && npm i -ws=$ws --include-workspace-root=$ws",
"git add . && npx lint-staged --allow-empty || true"
],
Expand Down

0 comments on commit 1bd76bc

Please sign in to comment.