chore(deps): update dependency idna to v3.19 #1254
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: Auto Approve | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - synchronize | |
| workflow_dispatch: | |
| inputs: | |
| pullRequestNumber: | |
| description: Pull request number to auto-approve | |
| required: false | |
| jobs: | |
| auto-approve: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| # Sample catalog PRs are intentionally auto-approved and auto-merged. The sample remains | |
| # excluded from consumer CI, so this policy relies on the narrow catalog match and release | |
| # exclusion rather than treating sample updates as consumer artifacts. | |
| if: github.event_name == 'workflow_dispatch' || github.actor == 'renovate[bot]' | |
| steps: | |
| - uses: hmarr/auto-approve-action@v4.0.0 | |
| with: | |
| review-message: "Auto approved automated PR" | |
| pull-request-number: ${{ github.event.inputs.pullRequestNumber }} |