Skip to content

Updated API from documentation release #1185

Updated API from documentation release

Updated API from documentation release #1185

Workflow file for this run

on:
push:
paths:
- 'api-specs/**'
workflow_dispatch:
name: Update RAML
permissions:
contents: write # for stefanzweifel/git-auto-commit-action to push code in repo
jobs:
generate:
name: "Update RAML spec"
runs-on: ubuntu-latest
steps:
# Get GitHub token via the CT SDKs App
- name: Generate GitHub token (via CT SDKs App)
id: generate_github_token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.CT_SDKS_APP_ID }}
private-key: ${{ secrets.CT_SDKS_APP_PEM }}
owner: ${{ github.repository_owner }}
- name: Get App user
id: get_app_user
env:
GITHUB_TOKEN: ${{ steps.generate_github_token.outputs.token }}
run: |
export GH_APP_USER=`gh api /users/ct-sdks%5Bbot%5D | jq .id`
echo "email=${GH_APP_USER}+ct-sdks[bot]@users.noreply.github.com" >> "$GITHUB_OUTPUT"
- name: "Checkout"
uses: actions/checkout@v4
with:
# Pass a personal access token (using our CT SDKs App) to be able to trigger other workflows
# https://help.github.com/en/actions/reference/events-that-trigger-workflows#triggering-new-workflows-using-a-personal-access-token
# https://github.community/t/action-does-not-trigger-another-on-push-tag-action/17148/8
token: ${{ steps.generate_github_token.outputs.token }}
- name: 'Setup Java'
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: '16'
- run: sudo chmod 777 /usr/local/bin && make generate lint
if: github.ref != 'refs/heads/main'
- run: sudo chmod 777 /usr/local/bin && make build
if: github.ref == 'refs/heads/main'
- run: sudo chmod 777 /usr/local/bin && make generate_bruno
if: github.ref == 'refs/heads/main'
continue-on-error: true
- name: "check pending changes"
run: echo "CHANGES_PENDING=`git status --porcelain -- ':(exclude)*gen.properties' | grep -c ^`" >> $GITHUB_ENV
- uses: stefanzweifel/git-auto-commit-action@v4
if: env.CHANGES_PENDING != '0'
with:
commit_message: "TASK: Updating RAML types, Postman and OAS definition"
file_pattern: oas uml bruno
commit_author: ct-sdks[bot] <${{ steps.get_app_user.outputs.email }}>
commit_user_name: ct-sdks[bot]
commit_user_email: ${{ steps.get_app_user.outputs.email }}