Skip to content

Commit fe6c3d7

Browse files
authored
chore: Merge main into v1 (#816)
This is in preparation for Release v1.2.0
2 parents ecd51c8 + a27d999 commit fe6c3d7

File tree

10 files changed

+87
-51
lines changed

10 files changed

+87
-51
lines changed

.github/actions/file/package-lock.json

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

.github/actions/file/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
"type": "module",
1515
"dependencies": {
1616
"@actions/core": "^1.11.1",
17-
"@octokit/core": "^7.0.3",
17+
"@octokit/core": "^7.0.4",
1818
"@octokit/plugin-throttling": "^11.0.1"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^24.3.0",
21+
"@types/node": "^24.5.2",
2222
"typescript": "^5.8.3"
2323
}
2424
}

.github/actions/find/package-lock.json

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

.github/actions/find/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"playwright": "^1.55.0"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^24.3.0",
21+
"@types/node": "^24.5.2",
2222
"typescript": "^5.8.3"
2323
}
2424
}

.github/actions/fix/package-lock.json

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

.github/actions/fix/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
"type": "module",
1515
"dependencies": {
1616
"@actions/core": "^1.11.1",
17-
"@octokit/core": "^7.0.3",
17+
"@octokit/core": "^7.0.4",
1818
"@octokit/plugin-throttling": "^11.0.1"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^24.3.0",
21+
"@types/node": "^24.5.2",
2222
"typescript": "^5.8.3"
2323
}
2424
}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v5
3232

3333
- name: Setup Ruby
34-
uses: ruby/setup-ruby@efbf473cab83af4468e8606cc33eca9281bb213f
34+
uses: ruby/setup-ruby@cf7216d52fba1017929b4d7162fabe2b30af5b49
3535
with:
3636
ruby-version: "3.4"
3737
bundler-cache: true
@@ -74,7 +74,7 @@ jobs:
7474
token: ${{ secrets.GITHUB_TOKEN }}
7575

7676
- name: Add PR URLs to findings
77-
uses: actions/github-script@v7
77+
uses: actions/github-script@v8
7878
with:
7979
github-token: ${{ secrets.GITHUB_TOKEN }}
8080
script: |

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ Trigger the workflow manually or automatically based on your configuration. The
9696
| `repository` | Yes | Repository (with owner) for issues and PRs | `primer/primer-docs` |
9797
| `token` | Yes | PAT with write permissions (see above) | `${{ secrets.GH_TOKEN }}` |
9898
| `cache_key` | No | Custom key for caching findings across runs<br>Allowed: `A-Za-z0-9._/-` | `cached_findings-main-primer.style.json` |
99+
| `skip_copilot_assignment` | No | Whether to skip assigning filed issues to Copilot | `true` |
99100

100101
---
101102

action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ inputs:
1515
cache_key:
1616
description: "Custom key for caching findings across runs"
1717
required: false
18+
skip_copilot_assignment:
19+
description: "Whether to skip assigning filed issues to Copilot"
20+
required: false
21+
default: "false"
1822

1923
runs:
2024
using: "composite"
@@ -48,7 +52,8 @@ runs:
4852
repository: ${{ inputs.repository }}
4953
token: ${{ inputs.token }}
5054
cached_findings: ${{ steps.restore.outputs.value }}
51-
- name: Fix
55+
- if: ${{ inputs.skip_copilot_assignment != 'true' }}
56+
name: Fix
5257
id: fix
5358
uses: ./.github/actions/fix
5459
with:

package-lock.json

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

0 commit comments

Comments
 (0)