Skip to content

fix(deps): update module google.golang.org/grpc to v1.71.0 - autoclosed #5173

fix(deps): update module google.golang.org/grpc to v1.71.0 - autoclosed

fix(deps): update module google.golang.org/grpc to v1.71.0 - autoclosed #5173

Workflow file for this run

name: Verify PR Label
on:
merge_group:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
- labeled
- unlabeled
permissions:
contents: read
jobs:
check-label:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
with:
egress-policy: audit
- name: Check PR label
if: ${{ github.event.pull_request.user.login != 'dependabot' && github.event_name != 'merge_group' }}
run: |
LABEL_NAME="changelog:"
if [[ $(curl -s "https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}" | jq -r '.labels[].name' | grep -c "^$LABEL_NAME") -eq 0 ]]; then
echo "Error: Pull request is missing a required label of the form '${LABEL_NAME}***'."
exit 1
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}