Bump github.com/open-policy-agent/cert-controller from 0.10.2-0.20240531181455-2649f121ab97 to 0.11.0 #142
Workflow file for this run
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: Add Labels | |
on: | |
pull_request_target: | |
types: [opened, edited] | |
jobs: | |
add_labels: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: actions-ecosystem/action-remove-labels@v1 | |
with: | |
labels: | | |
kind/api-change | |
kind/bug | |
kind/cleanup | |
kind/deprecation | |
kind/design | |
kind/documentation | |
kind/failing | |
kind/feature | |
kind/flake | |
kind/regression | |
- uses: actions-ecosystem/action-regex-match@v2 | |
id: regex-match | |
with: | |
text: ${{ github.event.pull_request.body }} | |
regex: '(?<!> )\/kind (\w+)' | |
- name: Check | |
run: | | |
if [[ ! "${{ steps.regex-match.outputs.group1 }}" =~ ^(api-change|bug|cleanup|deprecation|design|documentation|failing|feature|flake|regression)$ ]]; then | |
echo "kind must belong to | |
- api-change \ | |
- bug \ | |
- cleanup \ | |
- deprecation \ | |
- design \ | |
- documentation \ | |
- failing \ | |
- feature \ | |
- flake \ | |
- regression \ | |
please add /kind [type] to the body of the PR" | |
exit 1 | |
fi | |
- uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: kind/${{ steps.regex-match.outputs.group1 }} |