Spec update #120
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: 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.22 | |
uses: actions/[email protected] | |
with: | |
go-version: '1.22' | |
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]> |