fix: ensure keyboard entries navigation accounts for group order #2
Workflow file for this run
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: COMMENT_TARGETS_MAIN | |
on: | |
pull_request: | |
types: | |
- opened | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
jobs: | |
comment: | |
name: Comment on targeting main branch | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Create comment | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
NUMBER: ${{ github.event.number }} | |
BODY: | | |
This pull request targets the `main` branch. Please target `main` for bug fixes only. Target `develop` for regular feature development. | |
run: gh issue comment "$NUMBER" --body "$BODY" |