Skip to content

Update

Update #63

Workflow file for this run

name: Update
on:
schedule:
- cron: 0 3 * * 1-5
permissions: read-all
jobs:
updater:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: arduino/setup-task@v2
- run: wget -O openapi.json https://api.aiven.io/doc/openapi.json
- run: task generate
env:
AIVEN_TOKEN: ${{ secrets.AIVEN_TOKEN }}
AIVEN_PROJECT_NAME: ${{ secrets.AIVEN_PROJECT_NAME }}
- id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- uses: peter-evans/create-pull-request@v6
with:
author: GitHub <[email protected]>
body: >
automated changes by
[update](https://github.com/aiven/go-client-codegen/blob/main/.github/workflows/update.yml)
GitHub Actions workflow
branch: update/${{ steps.date.outputs.date }}
commit-message: "chore(update): bump openapi schema (${{ steps.date.outputs.date }})"
title: "chore(update): bump openapi schema (${{ steps.date.outputs.date }})"