10000 Regenerate client from commit 647474e of spec repo · arduino/iot-client-js@8f5b01b · GitHub
[go: up one dir, main page]

Skip to content

Regenerate client from commit 647474e of spec repo #44

Regenerate client from commit 647474e of spec repo

Regenerate client from commit 647474e of spec repo #44

Workflow file for this run

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'
})
0