docs-util: add docblock generator for models built with DML (#8296)

* docs-util: add docblock generator for models built with DML

* add missing turbo task
This commit is contained in:
Shahed Nasser
2024-07-29 11:11:39 +03:00
committed by GitHub
parent cb33ec5cf1
commit d127abbcda
30 changed files with 749 additions and 63 deletions

View File

@@ -116,3 +116,55 @@ jobs:
branch: "chore/generate-oas"
branch-suffix: "timestamp"
add-paths: www/utils/generated/oas-output/**
generate-dml:
name: Generated DML JSON files PR
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: yarn
- name: Install www/utils Dependencies
run: yarn
working-directory: www/utils
- name: Build packages
run: yarn build
working-directory: www/utils
- name: Check Commit
id: check-commit
run: "yarn check:release-commit ${{ github.sha }}"
working-directory: www/utils/packages/scripts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_OWNER: ${{ github.repository_owner }}
GIT_REPO: medusa
- name: Run docblock generator
if: steps.check-commit.outputs.is_release_commit == 'true'
run: "yarn generate:dml"
working-directory: www/utils
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_OWNER: ${{ github.repository_owner }}
GIT_REPO: medusa
- name: Create Pull Request
if: steps.check-commit.outputs.is_release_commit == 'true'
uses: peter-evans/create-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: "chore(docs): Generated DML JSON files"
body: "This PR holds all generated DML JSON files for the upcoming release."
branch: "chore/generate-dml-json"
branch-suffix: "timestamp"
add-paths: www/utils/generated/dml-output/**