chore(deps): update quay.io/rhacs-eng/konflux-tasks:latest docker digest to a1067ca #770
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: auto-merge | |
| on: | |
| pull_request: | |
| types: | |
| - labeled | |
| jobs: | |
| auto-approve: | |
| name: Auto-approve Konflux updates for default branch | |
| runs-on: ubuntu-latest | |
| if: github.actor == 'red-hat-konflux[bot]' && github.event.label.name == 'auto-approve' && github.event.pull_request.base.ref == github.event.pull_request.base.repo.default_branch | |
| steps: | |
| - env: | |
| GH_TOKEN: ${{ secrets.RHACS_BOT_GITHUB_TOKEN }} | |
| run: | | |
| set -euo pipefail | |
| gh pr review ${{ github.event.pull_request.number }} \ | |
| --approve --body "Auto-approved by automation." \ | |
| --repo "${{ github.repository }}" |