-
Notifications
You must be signed in to change notification settings - Fork 357
54 lines (53 loc) · 1.88 KB
/
generate.yaml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
on:
workflow_dispatch:
inputs:
services:
required: true
type: string
workflow_call:
inputs:
services:
required: true
type: string
name: generate
jobs:
generate_one:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
max-parallel: 4
matrix:
service: ${{fromJson(inputs.services)}}
steps:
- run: echo generating ${{ matrix.service }}
- uses: actions/checkout@v2
with:
fetch-depth: 1
path: google-api-java-client-services
- uses: actions/checkout@v2
with:
repository: googleapis/discovery-artifact-manager
fetch-depth: 1
path: discovery-artifact-manager
- run: |
sudo apt update
sudo apt install python2
echo "using $(python2 --version)"
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py -o get-pip.py
python2 get-pip.py
- run: ./google-api-java-client-services/.github/workflows/generate.sh ${{ matrix.service }}
- uses: googleapis/code-suggester@v2 # takes the changes from git directory
env:
ACCESS_TOKEN: ${{ secrets.YOSHI_CODE_BOT_TOKEN }}
with:
command: pr
upstream_owner: ${{ github.repository_owner }}
upstream_repo: google-api-java-client-services
description: 'Generated in GitHub action: https://github.com/${{ github.repository_owner }}/${{ github.repository }}/actions/workflows/codegen.yaml'
title: 'chore: regenerate ${{ matrix.service }} client'
message: 'chore: regenerate ${{ matrix.service }} client'
branch: regenerate-${{ matrix.service }}
git_dir: 'google-api-java-client-services/clients/google-api-services-${{ matrix.service }}'
primary: main
force: true
fork: true