A workflow for updating the CHANGELOG.md in the root directory #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 CHANGELOG.md in the root directory | |
# Controls when the action will run. | |
on: | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# Run this Github Action every Tuesday at 7 AM UTC | |
- cron: '0 7 * * 2' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
permissions: | |
pull-requests: write # for googleapis/code-suggester | |
name: Update Changelog | |
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: Run bash script to update CHANGELOG.md in the root directory | |
run: ./scripts/updatechangelog.sh | |
- 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 the root changelog' | |
title: 'chore: Update the root changelog' | |
message: 'chore: Update the root changelog' | |
branch: update-changelog | |
git_dir: '.' |