Skip to content

Chore(deps): bump k8s.io/component-base from 0.29.3 to 0.30.2 #282

Chore(deps): bump k8s.io/component-base from 0.29.3 to 0.30.2

Chore(deps): bump k8s.io/component-base from 0.29.3 to 0.30.2 #282

Workflow file for this run

name: Add Labels
on:
pull_request_target:
types: [opened, edited]
jobs:
add_labels:
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
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 }}
- name: Check release notes were not deleted
uses: actions/github-script@v7
with:
script: |
const pr = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.issue.number
});
if (!pr.data.body.includes("```release-note")) {
throw new Error("Please don't cancel the ```release-note ``` section as it is used to build the release notes");
}