fix(a11y): signpost close aria label update and allow user to config aria label #811
Workflow file for this run
This file contains 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: PR Backport | |
on: | |
pull_request_target: | |
types: ['labeled', 'closed'] | |
jobs: | |
backport: | |
name: Backport | |
runs-on: ubuntu-latest | |
if: | | |
github.event.pull_request.merged | |
&& ( | |
github.event.action == 'closed' | |
|| ( | |
github.event.action == 'labeled' | |
&& contains(github.event.label.name, 'auto-backport-to') | |
) | |
) | |
steps: | |
- uses: dtsanevmw/backport@v2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |