modify default screenshot shortcut to use the accelerator key #9996
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: puLL-Merge | |
on: | |
pull_request: | |
types: ['opened', 'edited', 'reopened', 'synchronize', 'ready_for_review'] | |
merge_group: | |
permissions: | |
contents: read | |
id-token: write | |
pull-requests: write | |
jobs: | |
pull-merge: | |
concurrency: | |
group: ${{ github.head_ref }}-init | |
cancel-in-progress: true | |
name: puLL-Merge | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: brave/pull-merge@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
openai_api_key: ${{ secrets.OPENAI_API_KEY }} | |
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
bedrock_aws_iam_role_arn: ${{ secrets.SECURITY_BEDROCK_AWS_IAM_ROLE_ARN }} | |
region: us-west-2 |