Skip to content

chore: release main (#13047) #624

chore: release main (#13047)

chore: release main (#13047) #624

# Copyright 2023 Google LLC
# Licensed 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
# https://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: A workflow for updating the release please configuration files
# Controls when the action will run.
on:
push:
paths:
- '**/gapic_version.py'
branches:
- main
permissions:
contents: read
jobs:
build:
permissions:
pull-requests: write # for googleapis/code-suggester
name: Update release please config
runs-on: ubuntu-latest
# don't run the workflow on forks of googleapis/google-cloud-python
if: ${{github.repository == 'googleapis/google-cloud-python'}}
steps:
- uses: actions/checkout@v4
# Use a fetch-depth of 2
# See https://github.com/googleapis/google-cloud-python/issues/12013
# and https://github.com/actions/checkout#checkout-head.
with:
fetch-depth: 2
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Run configure_release_please.py
run: python3 configure_release_please.py
working-directory: ./scripts/configure_release_please
- uses: googleapis/code-suggester@v4
env:
ACCESS_TOKEN: ${{ secrets.YOSHI_CODE_BOT_TOKEN }}
with:
command: pr
force: true
upstream_owner: googleapis
upstream_repo: google-cloud-python
description: 'Update release-please config files'
title: 'chore: Update release-please config files'
message: 'chore: Update release-please config files'
branch: update-release-please-config-files
git_dir: '.'