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
Copy file name to clipboardExpand all lines: .github/actions/file/action.yml
+4-12Lines changed: 4 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -2,23 +2,17 @@ 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"
7
-
required: false
8
5
findings_file:
9
-
description: "Path to a JSON file containing findings (alternative to 'findings' for large datasets)"
10
-
required: false
6
+
description: "Path to a JSON file containing the list of potential accessibility gaps"
7
+
required: true
11
8
repository:
12
9
description: "Repository (with owner) to file issues in"
13
10
required: true
14
11
token:
15
12
description: "Token with fine-grained permission 'issues: write'"
16
13
required: true
17
-
cached_filings:
18
-
description: "Cached filings from previous runs, as stringified JSON. Without this, duplicate issues may be filed."
19
-
required: false
20
14
cached_filings_file:
21
-
description: "Path to a JSON file containing cached filings (alternative to 'cached_filings' for large datasets)"
15
+
description: "Path to a JSON file containing cached filings from previous runs. Without this, duplicate issues may be filed."
22
16
required: false
23
17
screenshot_repository:
24
18
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."
@@ -29,10 +23,8 @@ inputs:
29
23
default: "false"
30
24
31
25
outputs:
32
-
filings:
33
-
description: "List of issues filed (and their associated finding(s)), as stringified JSON"
34
26
filings_file:
35
-
description: "Path to a JSON file containing filings (use for large datasets to avoid output size limits)"
27
+
description: "Path to a JSON file containing the list of issues filed (and their associated finding(s))"
0 commit comments