mirror of
https://github.com/gcatanese/adyen-postman.git
synced 2026-03-10 08:01:18 +00:00
32 lines
949 B
YAML
32 lines
949 B
YAML
name: "Generate Postman json and commit"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
file:
|
|
description: 'OpenAPI filepath'
|
|
required: true
|
|
default: 'adyen-openapi/yaml/CheckoutService-v70.yaml'
|
|
jobs:
|
|
generate:
|
|
name: "Generate Postman Collection"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: 'gcatanese/adyen-openapi'
|
|
fetch-depth: 0
|
|
path: 'adyen-openapi'
|
|
- uses: addnab/docker-run-action@v3
|
|
with:
|
|
image: ghcr.io/adyen-examples/openapi-generator-postman-v2:main
|
|
options: -v ${{ github.workspace }}:/usr/src/app
|
|
run: |
|
|
/usr/src/app/generatePostmanJsonFile.sh ${{ github.event.inputs.file }}
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "Manual generation"
|