Skip to content

Commit

Permalink
chore: update pob root
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and christophehurpeau committed Sep 30, 2024
1 parent 93434f8 commit d100e05
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/push-renovate-pob_root.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Check for added or modified files
id: git-check-modified
run: echo ::set-output name=modified::$(if [[ -z $(git status -s) ]]; then echo "false"; else echo "true"; fi)
run: if [[ -z $(git status -s) ]]; then echo "modified=false" >> $GITHUB_OUTPUT ; else echo "modified=true"; fi

- name: Commit report
if: steps.git-check-modified.outputs.modified == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-renovate-prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Check for added or modified files
id: git-check-modified
run: echo ::set-output name=modified::$(if [[ -z $(git status -s) ]]; then echo "false"; else echo "true"; fi)
run: if [[ -z $(git status -s) ]]; then echo "modified=false" >> $GITHUB_OUTPUT ; else echo "modified=true"; fi

- name: Commit report
if: steps.git-check-modified.outputs.modified == 'true'
Expand Down
10 changes: 10 additions & 0 deletions .husky/post-checkout
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
if [ -n "$(git diff HEAD@{1}..HEAD@{0} -- yarn.lock)" ]; then
yarn config set logFilters --json '[
{"code": "YN0002","level": "discard"},
{"code": "YN0007","level": "discard"},
{"code": "YN0008","level": "discard"},
{"code": "YN0013","level": "discard"},
{"code": "YN0018","level": "discard"},
{"code": "YN0060","level": "discard"},
{"code": "YN0061","level": "discard"}
]' > /dev/null
yarn install --immutable || true
yarn config unset logFilters > /dev/null
fi
10 changes: 10 additions & 0 deletions .husky/post-merge
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
if [ -n "$(git diff HEAD@{1}..HEAD@{0} -- yarn.lock)" ]; then
yarn config set logFilters --json '[
{"code": "YN0002","level": "discard"},
{"code": "YN0007","level": "discard"},
{"code": "YN0008","level": "discard"},
{"code": "YN0013","level": "discard"},
{"code": "YN0018","level": "discard"},
{"code": "YN0060","level": "discard"},
{"code": "YN0061","level": "discard"}
]' > /dev/null
yarn install --immutable || true
yarn config unset logFilters > /dev/null
fi
10 changes: 10 additions & 0 deletions .husky/post-rewrite
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
if [ -n "$(git diff HEAD@{1}..HEAD@{0} -- yarn.lock)" ] | [ "$1" = "rebase" ]; then
yarn config set logFilters --json '[
{"code": "YN0002","level": "discard"},
{"code": "YN0007","level": "discard"},
{"code": "YN0008","level": "discard"},
{"code": "YN0013","level": "discard"},
{"code": "YN0018","level": "discard"},
{"code": "YN0060","level": "discard"},
{"code": "YN0061","level": "discard"}
]' > /dev/null
yarn install --immutable || true
yarn config unset logFilters > /dev/null
fi
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
CHANGELOG.md
/.yarnrc.yml
/docs
/.yarn/**/*
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -653,9 +653,9 @@ __metadata:
languageName: node
linkType: hard

"@pob/root@npm:13.3.0":
version: 13.3.0
resolution: "@pob/root@npm:13.3.0"
"@pob/root@npm:13.4.1":
version: 13.4.1
resolution: "@pob/root@npm:13.4.1"
dependencies:
"@commitlint/cli": "npm:19.5.0"
"@pob/pretty-eslint-config": "npm:7.0.0"
Expand All @@ -681,7 +681,7 @@ __metadata:
pretty-pkg: ./bin/pretty-pkg.js
repository-check-dirty: ./bin/repository-check-dirty.js
yarn-version: ./bin/yarn-version.js
checksum: 10c0/32e17b20ae2b74983792c73cca5d7a14f112f8117b658e8a9d7c72ce91e526a5c19097bc028b6f5aee09cd819a3ec2762cad11be40861f7161049e678216a443
checksum: 10c0/8b2b84e872a9c48d60efb803868cd12945c73d72992c3aa7e644ace67d3e2bf6ff0f6aeab0508e369ffc6af6047835098ffbad4d37379c7a9823e9a2745b9b4c
languageName: node
linkType: hard

Expand Down Expand Up @@ -1532,7 +1532,7 @@ __metadata:
dependencies:
"@pob/commitlint-config": "npm:7.0.0"
"@pob/eslint-config": "npm:58.1.0"
"@pob/root": "npm:13.3.0"
"@pob/root": "npm:13.4.1"
check-package-dependencies: "npm:7.2.0"
eslint: "npm:9.11.1"
typescript: "npm:5.6.2"
Expand Down

0 comments on commit d100e05

Please sign in to comment.