Update Gems #113
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
name: Update Gems | |
on: | |
schedule: | |
- cron: '43 11 * * 0' | |
workflow_dispatch: | |
inputs: | |
args: | |
description: "Extra command line arguments." | |
required: false | |
jobs: | |
generate-updates: | |
if: ${{ github.repository == 'googleapis/common-protos-ruby' }} | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.YOSHI_CODE_BOT_TOKEN }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install Ruby 3.3 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.3" | |
- name: Install tools | |
run: "gem install --no-document toys grpc-tools:1.62.0" | |
- name: execute | |
run: | | |
toys update-gems-pr -v --fork ${{ github.event.inputs.args }} |