Skip to content

Spec update

Spec update #107

Workflow file for this run

name: Spec update
on:
schedule:
# Monday morning
- cron: '0 6 * * 1'
workflow_dispatch:
jobs:
scan:
name: "spec update"
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/[email protected]
with:
go-version: '1.21'
id: go
- name: Clone repository
uses: actions/[email protected]
- name: Run tools/update-spec.sh
run: |
tools/update-spec.sh
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
branch: update-spec
delete-branch: true
title: "internal: update api specs"
commit-message: "internal: update api specs"
body: Client API specs update.
token: ${{ secrets.UPDATE_API_SPEC_TOKEN }}
author: schutzbot <[email protected]>