Image Upload Functionality Not Implemented for Company Logo in Jobs Create page #4550
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Accessibility Alt Text Bot | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| pull_request: | |
| types: [opened, edited] | |
| issue_comment: | |
| types: [created, edited] | |
| discussion: | |
| types: [created, edited] | |
| discussion_comment: | |
| types: [created, edited] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.issue.number || github.event.pull_request.number || github.event.discussion.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| discussions: write | |
| jobs: | |
| accessibility_alt_text_bot: | |
| name: Check alt text on issues and pull requests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Alt Text Bot | |
| uses: github/[email protected] |