Skip to content

Commit 6dbb700

Browse files
committed
Manual markdown fixes
1 parent 96264b9 commit 6dbb700

File tree

3 files changed

+13
-19
lines changed

3 files changed

+13
-19
lines changed

.github/ACTIONLINT_AND_INJECTION_FIXES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Three workflows were referencing `inputs.repo` and `inputs.pr-base-sha` in condi
1616

1717
**Error Messages:**
1818

19-
```
19+
```text
2020
property "repo" is not defined in object type {ref: string}
2121
property "pr-base-sha" is not defined in object type {ref: string}
2222
```

.github/AUTHORIZATION_ANALYSIS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ contains(fromJSON('["OWNER", "COLLABORATOR", "MEMBER"]'), github.event.comment.a
3131
GitHub provides the following `author_association` values via its GraphQL API:
3232

3333
| Value | Description |
34-
|-------|-------------|
34+
| ----- | ----------- |
3535
| `OWNER` | Author is the owner of the repository |
3636
| `MEMBER` | Author is a member of the organization that owns the repository |
3737
| `COLLABORATOR` | Author has been invited to collaborate on the repository |
@@ -124,7 +124,7 @@ Allowing unauthorized users to trigger these workflows could lead to:
124124
## Edge Cases Considered
125125

126126
| Scenario | Author Association | Covered? |
127-
|----------|-------------------|----------|
127+
| -------- | ------------------ | -------- |
128128
| Organization member without repository access | `MEMBER` | ✅ Yes |
129129
| Organization member with Read access | `MEMBER` | ✅ Yes |
130130
| Organization member with Admin access | `MEMBER` | ✅ Yes |

MARKDOWN_FIX_ANALYSIS.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,24 @@ The following markdown errors need to be fixed in PR 290's branch (`maintenance/
3737

3838
**Fix:** Change from:
3939

40-
```
40+
```text
4141
**Error Messages:**
42-
```
4342
43+
\```
4444
property "repo" is not defined in object type {ref: string}
4545
property "pr-base-sha" is not defined in object type {ref: string}
46-
47-
```
46+
\```
4847
```
4948

5049
To:
5150

52-
```
51+
```text
5352
**Error Messages:**
5453
55-
```text
54+
\```text
5655
property "repo" is not defined in object type {ref: string}
5756
property "pr-base-sha" is not defined in object type {ref: string}
58-
```
59-
57+
\```
6058
```
6159

6260
Note: Also adds a blank line before the code block per MD031.
@@ -66,35 +64,31 @@ Note: Also adds a blank line before the code block per MD031.
6664
**Error:** MD060 - Table column style (missing spaces around pipes)
6765

6866
**Fix 1 (line 34):** Change from:
69-
```
7067

68+
```markdown
7169
| Value | Description |
7270
|-------|-------------|
73-
7471
```
7572

7673
To:
77-
```
7874

75+
```markdown
7976
| Value | Description |
8077
| ----- | ----------- |
81-
8278
```
8379

8480
**Fix 2 (line 127):** Change from:
85-
```
8681

82+
```markdown
8783
| Scenario | Author Association | Covered? |
8884
|----------|-------------------|----------|
89-
9085
```
9186

9287
To:
93-
```
9488

89+
```markdown
9590
| Scenario | Author Association | Covered? |
9691
| -------- | ----------------- | -------- |
97-
9892
```
9993

10094
## Testing

0 commit comments

Comments
 (0)