diff --git a/.github/workflows/updatechangelog.yml b/.github/workflows/updatechangelog.yml deleted file mode 100644 index 66931b1cdaec..000000000000 --- a/.github/workflows/updatechangelog.yml +++ /dev/null @@ -1,56 +0,0 @@ -# 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@v5 - # 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@v5 - 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: '.' diff --git a/scripts/updatechangelog.sh b/scripts/updatechangelog.sh deleted file mode 100755 index 70487996b638..000000000000 --- a/scripts/updatechangelog.sh +++ /dev/null @@ -1,13 +0,0 @@ -output="Please refer to each API's \`CHANGELOG.md\` file under the \`packages/\` directory\n\nChangelogs\n-----\n" - -SCRIPT_ROOT=$(realpath $(dirname "${BASH_SOURCE[0]}")) -PACKAGES_URL=https://github.com/googleapis/google-cloud-python/tree/main/packages - -for package in $SCRIPT_ROOT/../packages/*/ ; do - package_dir=$(basename $package) - package_location=$(echo 'packages/'$package_dir) - package_version=$(cat $SCRIPT_ROOT"/../.release-please-manifest.json" | jq -r --arg package_location "$package_location" '.[$package_location]' ) - output+="- [$package_dir==$package_version]($PACKAGES_URL/$package_dir/CHANGELOG.md)\n" -done - -echo -e $output > $SCRIPT_ROOT/../CHANGELOG.md