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