forked from googleapis/google-cloud-node
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (29 loc) · 861 Bytes
/
update-api-list.yaml
File metadata and controls
30 lines (29 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
on:
schedule:
- cron: "0 1 * * *"
workflow_dispatch:
jobs:
update-api-list:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install
- run: npm run generate
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- 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-node
description: 'Update the list of available APIs in the README.'
title: 'docs: update the list of available APIs'
message: 'docs: update the list of available APIs'
branch: update-api-list
git_dir: '.'