title #2
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: Backport PR Check | |
on: | |
pull_request: | |
branches: | |
- 'release/v*' | |
jobs: | |
check-pr-author: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check PR author | |
id: check_author | |
run: | | |
if [ "${{ github.actor }}" != "aqua-bot" ]; then | |
echo "::error::This branch is intended for automated backporting by bot. Please refer to the documentation:" | |
echo "::error::https://trivy.dev/latest/community/maintainer/backporting/" | |
exit 1 | |
fi |