ci(.github): enable self hosted runners for AMD64 E2E tasks (backport of #10945) #5972
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" |