Skip to content

Bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.68.0 to 1.69.0 in the golang-minor group #2045

Bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.68.0 to 1.69.0 in the golang-minor group

Bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.68.0 to 1.69.0 in the golang-minor group #2045

Workflow file for this run

name: Ensure PR Has Label(s)
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
jobs:
check_labels:
runs-on: ubuntu-latest
steps:
- name: Ensure PR has at least one label
if: ${{ github.event.pull_request.labels[0] == null }}
run: |
echo "No labels found: please add at least one label to the PR"
exit 1
shell: bash