chore: add action to update starter dependencies + update reference actions (#9385)
* chore: add action to update starter dependencies * change trigger type * trigger generating references on new RC release
This commit is contained in:
118
.github/workflows/generate-rc-references.yml
vendored
Normal file
118
.github/workflows/generate-rc-references.yml
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
name: Generate RC Reference [Automated]
|
||||
on:
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
jobs:
|
||||
rc-references:
|
||||
uses: ./.github/workflows/generate-resources-reference.yml
|
||||
rc-api:
|
||||
name: Generate OAS
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Cancel Previous Runs
|
||||
uses: styfle/cancel-workflow-action@0.11.0
|
||||
with:
|
||||
access_token: ${{ github.token }}
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "yarn"
|
||||
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/cache-deps
|
||||
with:
|
||||
extension: reference
|
||||
|
||||
- name: Build Packages
|
||||
run: yarn build
|
||||
|
||||
- name: Install www/utils Dependencies
|
||||
run: yarn
|
||||
working-directory: www/utils
|
||||
|
||||
- name: Build www/utils packages
|
||||
run: yarn build
|
||||
working-directory: www/utils
|
||||
|
||||
- name: Run docblock generator
|
||||
run: "yarn generate:oas"
|
||||
working-directory: www/utils
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GIT_OWNER: ${{ github.repository_owner }}
|
||||
GIT_REPO: medusa
|
||||
|
||||
- name: Generate API Reference (v2)
|
||||
run: yarn openapi:generate
|
||||
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v4
|
||||
with:
|
||||
commit-message: "chore(docs): Generated API Reference (v2)"
|
||||
base: "develop"
|
||||
title: "chore(docs): Updated API Reference (v2)"
|
||||
labels: "type: chore"
|
||||
add-paths: |
|
||||
www/apps/api-reference/specs
|
||||
www/utils/generated/oas-output
|
||||
branch: "docs/generate-api-ref"
|
||||
branch-suffix: "timestamp"
|
||||
rc-dml:
|
||||
name: Generate DML JSON files
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Cancel Previous Runs
|
||||
uses: styfle/cancel-workflow-action@0.11.0
|
||||
with:
|
||||
access_token: ${{ github.token }}
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Setup Node.js environment
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 20
|
||||
cache: "yarn"
|
||||
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/cache-deps
|
||||
with:
|
||||
extension: reference
|
||||
|
||||
- name: Build Packages
|
||||
run: yarn build
|
||||
|
||||
- name: Install www/utils Dependencies
|
||||
run: yarn
|
||||
working-directory: www/utils
|
||||
|
||||
- name: Build www/utils packages
|
||||
run: yarn build
|
||||
working-directory: www/utils
|
||||
|
||||
- name: Run docblock generator
|
||||
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
|
||||
uses: peter-evans/create-pull-request@v4
|
||||
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/**
|
||||
Reference in New Issue
Block a user