Skip to content

Update All golang.org/x packages #14036

Update All golang.org/x packages

Update All golang.org/x packages #14036

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@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
with:
egress-policy: audit
- name: Check PR label
# Only fail if NOT merge_group, AND labels DO NOT contain 'changelog:'
if: |
github.event_name != 'merge_group' &&
contains(join(github.event.pull_request.labels.*.name, ','), 'changelog:') == false
run: |
echo "::error::Pull request is missing a required 'changelog:' label. Found labels: ${{ join(github.event.pull_request.labels.*.name, ', ') }}"
exit 1