Removed chat #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Update Documentation | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| update-doc: | |
| name: Update Theneo Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "18" | |
| - name: Update Documentation on Theneo | |
| uses: Theneo-Inc/[email protected] | |
| with: | |
| FILE_PATH: ./public/example/openAPISpec.yml | |
| PROJECT_SLUG: nexmeet | |
| VERSION_SLUG: v1 | |
| WORKSPACE_SLUG: aideapad | |
| SECRET: ${{secrets.SECRET}} | |
| AUTO_PUBLISH: true | |
| IMPORT_OPTION: merge | |
| PARAMETER_DESCRIPTION_MERGE_STRATEGY: keep_new | |
| SECTION_DESCRIPTION_MERGE_STRATEGY: keep_old | |
| INCLUDE_GITHUB_METADATA: true |