Skip to content

chore: synced file(s) with sumup/apis #8

chore: synced file(s) with sumup/apis

chore: synced file(s) with sumup/apis #8

Workflow file for this run

name: Generate
on:
workflow_dispatch: {}
pull_request:
paths:
- openapi.json
branches:
- main
env:
GOPRIVATE: "github.com/sumup/*"
jobs:
generate:
name: Generate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: '1.22'
- run: git config --global url."https://x-access-token:${{ secrets.GH_ACTIONS_PAT_2 }}@github.com/".insteadOf "https://github.com/"
- run: go install github.com/sumup/gogenitor@latest
# Would be nice to run this from gogenitor but goimports can't be imported as a pkg
- run: go install golang.org/x/tools/cmd/goimports@latest
- run: gogenitor --out . --specs ./openapi.json
- uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4
with:
add: .
message: "chore: generate code"
default_author: github_actions