Skip to content

chore(deps): Bump aws-java-sdk2-version from 2.42.27 to 2.42.28 #320

chore(deps): Bump aws-java-sdk2-version from 2.42.27 to 2.42.28

chore(deps): Bump aws-java-sdk2-version from 2.42.27 to 2.42.28 #320

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: PR Cleanup Branches
on:
pull_request_target:
types: [closed]
permissions:
contents: write
jobs:
cleanup:
name: Delete automated branch
if: >-
github.repository == 'apache/camel'
&& github.event.pull_request.head.repo.full_name == github.event.repository.full_name
&& startsWith(github.event.pull_request.head.ref, 'automated/upgrade')
runs-on: ubuntu-latest
steps:
- name: Delete branch
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: ${{ github.event.pull_request.head.ref }}
run: |
echo "Deleting branch: $BRANCH"
gh api -X DELETE "repos/${{ github.repository }}/git/refs/heads/$BRANCH" || echo "Branch already deleted"