Regenerate client from commit 647c963 of spec repo #42
Workflow file for this run
This file contains hidden or 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: pr | |
on: | |
push: | |
branches: | |
# apigentools will push branches named like | |
# 'javascript/1568207674.3489769' | |
- 'javascript/*' | |
jobs: | |
open-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@0.2.0 | |
with: | |
github-token: ${{github.token}} | |
script: | | |
github.pulls.create({ | |
...context.repo, | |
title: context.payload.commits[0]['message'], | |
head: context.ref, | |
base: 'master' | |
}) |