Skip to content

Commit 4ba8a8f

Browse files
ci: update GitHub template files (#83)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 0f2c272 commit 4ba8a8f

File tree

6 files changed

+53
-63
lines changed

6 files changed

+53
-63
lines changed

.github/labeler.yaml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,17 @@
1414

1515
"✒️ documentation":
1616
- changed-files:
17-
- any-glob-to-any-file: "**/README.md"
17+
- any-glob-to-any-file: ["**/docs/**", "**/README.md"]
1818

1919
"🌏 i18n":
2020
- changed-files:
21-
- all-globs-to-any-file: ["**/docs/**", "!**/docs/en/**"]
22-
23-
"🚀 manifest":
24-
- changed-files:
25-
- any-glob-to-any-file: "manifest*/**"
21+
- any-glob-to-any-file:
22+
- "**/docs/!(en)/"
23+
- "**/docs/[a-z][a-z]-[a-z][a-z]/**"
2624

2725
"📦 package":
2826
- changed-files:
29-
- any-glob-to-any-file: "**/packages/**"
30-
- any-glob-to-any-file: "**/package.json"
27+
- any-glob-to-any-file: ["**/packages/**", "package.json"]
3128

3229
"🏯 styles":
3330
- changed-files:

.github/workflows/format.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
persist-credentials: false
1919

2020
- name: Setup PNPM
21-
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
21+
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0
2222

2323
- name: Setup Node
24-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
2525
with:
2626
node-version: ${{ env.NODE_VERSION }}
2727
cache: "pnpm"

.github/workflows/labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
gh label delete "invalid" --yes || true
3333
gh label delete "question" --yes || true
3434
gh label delete "wontfix" --yes || true
35+
gh label delete "🚀 manifest" --yes || true
3536
3637
gh label create "🚨 action" --description "Changes in GitHub workflows or actions" --color "A75AD5" --force
3738
gh label create "🤖 bot" --description "Automatically generated pull request" --color "0075CA" --force
@@ -45,7 +46,6 @@ jobs:
4546
gh label create "🆘 help wanted" --description "Extra attention is needed" --color "BFD4F2" --force
4647
gh label create "🌏 i18n" --description "Updates to internationalized docs, excluding English" --color "006B75" --force
4748
gh label create "👀 invalid" --description "This doesn't seem right" --color "E4E669" --force
48-
gh label create "🚀 manifest" --description "Manifest-related changes" --color "96D3D7" --force
4949
gh label create "📦 package" --description "Updates in package structure or package.json" --color "F34A37" --force
5050
gh label create "❓ question" --description "Further information is requested" --color "D876E3" --force
5151
gh label create "🏯 styles" --description "Stylesheets or design updates" --color "550F5A" --force

.github/workflows/publish.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ jobs:
5555
persist-credentials: false
5656

5757
- name: Setup PNPM
58-
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
58+
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0
5959

6060
- name: Setup Node
61-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
61+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
6262
with:
6363
node-version: ${{ env.NODE_VERSION }}
6464
cache: "pnpm"
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Create Release Pull Request
7070
id: changesets
71-
uses: changesets/action@c48e67d110a68bc90ccf1098e9646092baacaa87 # v1.6.0
71+
uses: changesets/action@6a0a831ff30acef54f2c6aa1cbbc1096b066edaf # v1.7.0
7272
with:
7373
commit: "ci: release"
7474
title: "ci: release [skip netlify]"
@@ -122,10 +122,10 @@ jobs:
122122
persist-credentials: false
123123

124124
- name: Setup PNPM
125-
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
125+
uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4.3.0
126126

127127
- name: Setup Node
128-
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
128+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
129129
with:
130130
node-version: ${{ env.NODE_VERSION }}
131131
cache: "pnpm"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"version": "pnpm changeset version && pnpm i --no-frozen-lockfile"
1919
},
2020
"devDependencies": {
21-
"@changesets/changelog-github": "^0.5.2",
22-
"@changesets/cli": "^2.29.8",
21+
"@changesets/changelog-github": "^0.6.0",
22+
"@changesets/cli": "^2.30.0",
2323
"@trivago/prettier-plugin-sort-imports": "6.0.2",
2424
"prettier": "3.8.1",
2525
"prettier-plugin-astro": "0.14.1"

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)