chore: Automate pre-commit hooks updates with Dependabot #138
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
| --- | |
| # See https://github.com/ansible/team-devtools/blob/main/.github/workflows/ack.yml | |
| name: ack | |
| on: | |
| merge_group: | |
| pull_request_target: | |
| types: [opened, labeled, unlabeled, synchronize] | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ack: | |
| name: Acknowledge pull request | |
| # Permissions come from the called workflow; a caller cannot grant less. | |
| permissions: | |
| checks: write # required to report the label check | |
| contents: write # required to update the draft release | |
| pull-requests: write # required to comment, approve, and merge | |
| uses: ansible/team-devtools/.github/workflows/ack.yml@e7604b7f0f487584a2264c09a0df1524fe2be49e # v26.4.0 | |
| secrets: inherit |