Skip to content

Commit 8918987

Browse files
authored
fix: typo in a11y bot creation (#1003)
<!-- 👋 Hi, thanks for sending a PR to create-typescript-app! 💖. Please fill out all fields below and make sure each item is true and [x] checked. Otherwise we may not be able to review your PR. --> ## PR Checklist - [X] Addresses an existing open issue: fixes #999 - [X] That issue was marked as [`status: accepting prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22) - [X] Steps in [CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md) were taken ## Overview This PR fixes an error associated with the newly implemented `accessibility-alt-text-bot` which was introduced by writing `issue` instead of `issues`. I also looked into the GH actions docs and noticed that `created` is not a possible option on issues and pull requests - replaced with `opened`.
1 parent ac2400a commit 8918987

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/accessibility-alt-text-bot.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ jobs:
88
name: Accessibility Alt Text Bot
99

1010
on:
11-
issue:
11+
issue_comment:
1212
types:
1313
- created
1414
- edited
15-
issue_comment:
15+
issues:
1616
types:
17-
- created
1817
- edited
18+
- opened
1919
pull_request:
2020
types:
21-
- created
2221
- edited
22+
- opened
2323

2424
permissions:
2525
issues: write

src/steps/writing/creation/dotGitHub/createWorkflowFile.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ interface WorkflowFileConcurrency {
66
}
77

88
interface WorkflowFileOn {
9-
issue?: {
9+
issue_comment?: {
1010
types?: string[];
1111
};
12-
issue_comment?: {
12+
issues?: {
1313
types?: string[];
1414
};
1515
pull_request?:

src/steps/writing/creation/dotGitHub/createWorkflows.test.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ describe("createWorkflows", () => {
5151
name: Accessibility Alt Text Bot
5252
5353
on:
54-
issue:
54+
issue_comment:
5555
types:
5656
- created
5757
- edited
58-
issue_comment:
58+
issues:
5959
types:
60-
- created
6160
- edited
61+
- opened
6262
pull_request:
6363
types:
64-
- created
6564
- edited
65+
- opened
6666
6767
permissions:
6868
issues: write
@@ -378,18 +378,18 @@ describe("createWorkflows", () => {
378378
name: Accessibility Alt Text Bot
379379
380380
on:
381-
issue:
381+
issue_comment:
382382
types:
383383
- created
384384
- edited
385-
issue_comment:
385+
issues:
386386
types:
387-
- created
388387
- edited
388+
- opened
389389
pull_request:
390390
types:
391-
- created
392391
- edited
392+
- opened
393393
394394
permissions:
395395
issues: write

src/steps/writing/creation/dotGitHub/createWorkflows.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -92,14 +92,14 @@ export function createWorkflows(options: Options) {
9292
"accessibility-alt-text-bot.yml": createWorkflowFile({
9393
name: "Accessibility Alt Text Bot",
9494
on: {
95-
issue: {
96-
types: ["created", "edited"],
97-
},
9895
issue_comment: {
9996
types: ["created", "edited"],
10097
},
98+
issues: {
99+
types: ["edited", "opened"],
100+
},
101101
pull_request: {
102-
types: ["created", "edited"],
102+
types: ["edited", "opened"],
103103
},
104104
},
105105
permissions: {

0 commit comments

Comments
 (0)