Skip to content

*: Add support for Kubernetes EndpointSlices #3631

*: Add support for Kubernetes EndpointSlices

*: Add support for Kubernetes EndpointSlices #3631

Workflow file for this run

name: PR Auto Labeling
on:
pull_request:
types:
- opened
jobs:
add-label:
name: Add `keep pr updated` Label
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Detect Community PR
id: community-pr-check
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'solo-io/gloo' }}
shell: bash
run: |
echo "Pull Request is from a fork. Setting IS_COMMUNITY_PR to true"
echo "IS_COMMUNITY_PR=true" >> $GITHUB_OUTPUT
- name: Add PR label
uses: christianvuerings/add-labels@v1
if: ${{ !steps.community-pr-check.outputs.IS_COMMUNITY_PR }}
with:
labels: |
keep pr updated
work in progress
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}