You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Required**List of potential accessibility gaps, as stringified JSON. For example:
11
+
**Required**Path to a JSON file containing the list of potential accessibility gaps. The path can be absolute or relative to the working directory (which defaults to `GITHUB_WORKSPACE`). For example:`findings.json`.
12
12
13
-
```JS
14
-
'[]'
13
+
The file should contain a JSON array of finding objects. For example:
**Required** Token with fine-grained permission 'issues: write'.
24
25
25
-
#### `cached_filings`
26
+
#### `cached_filings_file`
26
27
27
-
**Optional** Cached filings from previous runs, as stringified JSON. Without this, duplicate issues may be filed. For example: `'[{"findings":[],"issue":{"id":1,"nodeId":"SXNzdWU6MQ==","url":"https://github.com/github/docs/issues/123","title":"Accessibility issue: 1"}}]'`
28
+
**Optional** Path to a JSON file containing cached filings from previous runs. The path can be absolute or relative to the working directory (which defaults to `GITHUB_WORKSPACE`). Without this, duplicate issues may be filed. For example: `cached-filings.json`.
29
+
30
+
The file should contain a JSON array of filing objects. For example:
List of issues filed (and their associated finding(s)), as stringified JSON. For example: `'[{"findings":[],"issue":{"id":1,"nodeId":"SXNzdWU6MQ==","url":"https://github.com/github/docs/issues/123","title":"Accessibility issue: 1"}}]'`
44
+
Absolute path to a JSON file containing the list of issues filed (and their associated finding(s)). The action writes this file to a temporary directory and returns the absolute path. For example: `$RUNNER_TEMP/filings-<uuid>.json`.
45
+
46
+
The file will contain a JSON array of filing objects. For example:
Copy file name to clipboardExpand all lines: .github/actions/file/action.yml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@ name: "File"
2
2
description: "Files GitHub issues to track potential accessibility gaps."
3
3
4
4
inputs:
5
-
findings:
6
-
description: "List of potential accessibility gaps, as stringified JSON"
5
+
findings_file:
6
+
description: "Path to a JSON file containing the list of potential accessibility gaps"
7
7
required: true
8
8
repository:
9
9
description: "Repository (with owner) to file issues in"
@@ -14,8 +14,8 @@ inputs:
14
14
base_url:
15
15
description: "Optional base URL to pass into Octokit for the GitHub API (for example, `https://YOUR_HOSTNAME/api/v3` for GitHub Enterprise Server)"
16
16
required: false
17
-
cached_filings:
18
-
description: "Cached filings from previous runs, as stringified JSON. Without this, duplicate issues may be filed."
17
+
cached_filings_file:
18
+
description: "Path to a JSON file containing cached filings from previous runs. Without this, duplicate issues may be filed."
19
19
required: false
20
20
screenshot_repository:
21
21
description: "Repository (with owner) where screenshots are stored on the gh-cache branch. Defaults to the 'repository' input if not set. Required if issues are open in a different repo to construct proper screenshot URLs."
@@ -26,8 +26,8 @@ inputs:
26
26
default: "false"
27
27
28
28
outputs:
29
-
filings:
30
-
description: "List of issues filed (and their associated finding(s)), as stringified JSON"
29
+
filings_file:
30
+
description: "Path to a JSON file containing the list of issues filed (and their associated finding(s))"
Copy file name to clipboardExpand all lines: .github/actions/find/README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,10 +41,11 @@ configuration option.
41
41
42
42
### Outputs
43
43
44
-
#### `findings`
44
+
#### `findings_file`
45
45
46
-
List of potential accessibility gaps, as stringified JSON. For example:
46
+
Absolute path to a JSON file containing the list of potential accessibility gaps. The action writes this file to a temporary directory and returns the absolute path. For example:`$RUNNER_TEMP/findings-<uuid>.json`.
47
47
48
-
```JS
49
-
'[]'
48
+
The file will contain a JSON array of finding objects. For example:
Copy file name to clipboardExpand all lines: .github/actions/fix/README.md
+23-4Lines changed: 23 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,18 @@ Attempts to fix issues with Copilot.
6
6
7
7
### Inputs
8
8
9
-
#### `issues`
9
+
#### `issues_file`
10
10
11
-
**Required** List of issues to attempt to fix—including, at a minimum, their `url`s—as stringified JSON. For example: `'[{"url":"https://github.com/github/docs/issues/123"},{"nodeId":"SXNzdWU6Mg==","url":"https://github.com/github/docs/issues/124"},{"id":4,"nodeId":"SXNzdWU6NA==","url":"https://github.com/github/docs/issues/126","title":"Accessibility issue: 4"}]'`.
11
+
**Required** Path to a JSON file containing the list of issues to attempt to fix—including, at a minimum, their `url`s. The path can be absolute or relative to the working directory (which defaults to `GITHUB_WORKSPACE`). For example: `issues.json`.
12
+
13
+
The file should contain a JSON array of issue objects. For example:
@@ -20,6 +29,16 @@ Attempts to fix issues with Copilot.
20
29
21
30
### Outputs
22
31
23
-
#### `fixings`
32
+
#### `fixings_file`
33
+
34
+
Absolute path to a JSON file containing the list of pull requests filed (and their associated issues). The action writes this file to a temporary directory and returns the absolute path. For example: `$RUNNER_TEMP/fixings-<uuid>.json`.
24
35
25
-
List of pull requests filed (and their associated issues), as stringified JSON. For example: `'[{"issue":{"id":1,"nodeId":"SXNzdWU6MQ==","url":"https://github.com/github/docs/issues/123","title":"Accessibility issue: 1"},"pullRequest":{"url":"https://github.com/github/docs/pulls/124"}}]'`
36
+
The file will contain a JSON array of fixing objects. For example:
0 commit comments