refactor: resolve all 44 audit findings across sigint plugin #8
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
| # Dependabot Auto-Merge | |
| # Automatically approves and merges Dependabot PRs after CI passes | |
| # | |
| # This workflow calls the centralized auto-merge workflow from zircote/.github | |
| # Requires repository setting "Allow auto-merge" to be enabled | |
| name: Dependabot Auto-Merge | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| automerge: | |
| if: github.actor == 'dependabot[bot]' | |
| uses: zircote/.github/.github/workflows/reusable-dependabot-automerge.yml@f3caa0d0356e297cf232fbf3439398402e4582d9 # pin to main SHA | |
| secrets: inherit |