Skip to content

Update Gems

Update Gems #92

Workflow file for this run

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Install Ruby 3.0
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.0"
- name: Install tools
run: "gem install --no-document toys grpc-tools"
- name: execute
run: |
toys update-gems-pr -v --fork ${{ github.event.inputs.args }}