Skip to content

Commit db11245

Browse files
chore(deps-dev): bump prettier from 3.5.3 to 3.6.0 (#4403)
Bumps [prettier](https://github.com/prettier/prettier) from 3.5.3 to 3.6.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.5.3...3.6.0) --- updated-dependencies: - dependency-name: prettier dependency-version: 3.6.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1e27708 commit db11245

File tree

6 files changed

+26
-11
lines changed

6 files changed

+26
-11
lines changed

.github/actions/auto-commit/action.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ inputs:
1111
commit-files:
1212
description: "The files which should be commited with `git add xxx`"
1313
required: true
14+
auto-merge-app-id:
15+
description: "The id for github app to allow auto-merge"
16+
required: true
17+
auto-merge-private-key:
18+
description: "The private key for github app to allow auto-merge"
19+
required: true
20+
gh-token:
21+
description: "The default github token"
22+
required: true
1423

1524
runs:
1625
using: "composite"
@@ -20,13 +29,13 @@ runs:
2029
id: generate-token
2130
uses: actions/create-github-app-token@v2
2231
with:
23-
app-id: ${{ vars.AUTO_MERGE_APP_ID }}
24-
private-key: ${{ secrets.AUTO_MERGE_PRIVATE_KEY }}
32+
app-id: ${{ inputs.auto-merge-app-id }}
33+
private-key: ${{ inputs.auto-merge-private-key }}
2534

2635
- name: 🏗️ Create new branch and commit changes
2736
shell: bash
2837
env:
29-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
38+
GH_TOKEN: ${{ inputs.gh-token }}
3039
NEW_PR_BRANCH: ${{ inputs.branch-name }}
3140
COMMIT_MESSAGE: ${{ inputs.commit-message }}
3241
COMMIT_FILES: ${{ inputs.commit-files }}
@@ -44,7 +53,7 @@ runs:
4453
- name: 🪗 Create Pull Request
4554
shell: bash
4655
env:
47-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
GH_TOKEN: ${{ inputs.gh-token }}
4857
COMMIT_MESSAGE: ${{ inputs.commit-message }}
4958
NEW_PR_BRANCH: ${{ inputs.branch-name }}
5059
BASE_BRANCH: ${{ github.head_ref }}

.github/workflows/02-e2e-regenerated-snapshots-commit.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,6 @@ jobs:
7070
branch-name: "${{ github.head_ref }}-auto"
7171
commit-message: "auto update snapshots"
7272
commit-files: "__snapshots__/*"
73+
auto-merge-app-id: ${{ vars.AUTO_MERGE_APP_ID }}
74+
auto-merge-private-key: ${{ secrets.AUTO_MERGE_PRIVATE_KEY }}
75+
gh-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/99-self-healing-dependabot-updates.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,6 @@ jobs:
5959
branch-name: "${{ github.head_ref }}-auto"
6060
commit-message: "auto format code"
6161
commit-files: "."
62+
auto-merge-app-id: ${{ vars.AUTO_MERGE_APP_ID }}
63+
auto-merge-private-key: ${{ secrets.AUTO_MERGE_PRIVATE_KEY }}
64+
gh-token: ${{ secrets.GITHUB_TOKEN }}

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"npm-run-all2": "8.0.4",
9191
"postcss": "^8.5.6",
9292
"postcss-cli": "^11.0.1",
93-
"prettier": "^3.5.3",
93+
"prettier": "^3.6.1",
9494
"prettier-plugin-pkg": "0.21.1",
9595
"replace-in-file": "^8.3.0",
9696
"rimraf": "6.0.1",

packages/foundations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"dotenv": "^16.5.0",
5353
"glob": "11.0.3",
5454
"nodemon": "3.1.10",
55-
"prettier": "^3.5.3",
55+
"prettier": "^3.6.1",
5656
"sass": "1.85.0",
5757
"tsx": "^4.20.3",
5858
"typescript": "^5.4.5",

0 commit comments

Comments
 (0)