chore(deps): bump kumahq/kuma-gui to 69c435cbd08b8acc9e61098c491e8f71090c0f7d #3683
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: Auto backport label | |
on: | |
pull_request_target: | |
types: [opened, synchronize, labeled] | |
env: | |
PREDEFINED_GLOBS: ".github/**/*,.circleci/**/*,Makefile,mk/**/*,tools/**/*,.golangci.yml,.kube-linter.yaml" | |
LABEL_TO_ADD: backport | |
NO_BACKPORT_AUTOLABEL: no-backport-autolabel | |
permissions: | |
contents: read | |
jobs: | |
backport_label: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Check diff and add label | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
run: | | |
tools/ci/needs_backporting.sh "${{ github.repository }}" "${{ github.event.pull_request.number }}" "origin/${{ github.base_ref }}" "HEAD" "$PREDEFINED_GLOBS" "$LABEL_TO_ADD" "$NO_BACKPORT_AUTOLABEL" |