We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 556beed commit c6a525fCopy full SHA for c6a525f
.github/workflows/test-accessibility-alt-text-bot.yml
@@ -6,12 +6,14 @@ on:
6
types: [opened, edited]
7
issue_comment:
8
types: [created, edited]
9
+ discussion:
10
+ types: [created, edited]
11
12
jobs:
13
accessibility_alt_text_bot:
14
name: Check alt text is set on issue or pull requests
15
runs-on: ubuntu-latest
- if: ${{ github.event.issue || github.event.pull_request && github.event.comment.user.login != 'accessibility-bot' }}
16
+ if: ${{ github.event.issue || github.event.pull_request || github.event.discussion && github.event.comment.user.login != 'accessibility-bot' }}
17
steps:
18
- name: Check alt text
19
uses: github/accessibility-alt-text-bot@main
0 commit comments