Skip to content

fix: make the atlas_admin_v1_doc_id not required since it available only for PROD #764

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Jun 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
fd9e754
CLOUDP-323790: Update foas release process to support bump.sh deploym…
andreaangiolillo Jun 10, 2025
ad18aa5
Update generate-bump-pages.yml
andreaangiolillo Jun 10, 2025
4642246
Update generate-bump-pages.yml
andreaangiolillo Jun 10, 2025
6223c39
Update release-spec.yml
andreaangiolillo Jun 10, 2025
ca5a020
Update generate-bump-pages.yml
andreaangiolillo Jun 10, 2025
06ddbd1
Merge remote-tracking branch 'origin/main' into CLOUDP-323790
andreaangiolillo Jun 11, 2025
a629626
Addressed Raymund's comment
andreaangiolillo Jun 11, 2025
c748aac
Update generateSpecMapping.js
andreaangiolillo Jun 11, 2025
7b4508f
Merge remote-tracking branch 'origin/main' into CLOUDP-323790
andreaangiolillo Jun 11, 2025
5f6be7d
fix release
andreaangiolillo Jun 11, 2025
54d0684
Update generateSpecMapping.js
andreaangiolillo Jun 11, 2025
e448771
Merge remote-tracking branch 'origin/main' into CLOUDP-323790_fix_2
andreaangiolillo Jun 11, 2025
30e2a1b
fix release
andreaangiolillo Jun 11, 2025
9cdb168
Merge remote-tracking branch 'origin/main' into CLOUDP-323790_fix_3
andreaangiolillo Jun 11, 2025
72b4cf5
Merge remote-tracking branch 'origin/main' into CLOUDP-323790_fix_4
andreaangiolillo Jun 11, 2025
0deddd1
fix bump release - 4
andreaangiolillo Jun 11, 2025
e0bdc11
Merge remote-tracking branch 'origin/main' into CLOUDP-323790_fix_5
andreaangiolillo Jun 11, 2025
07a5c42
fix: make the `atlas_admin_v1_doc_id` not required since it available…
andreaangiolillo Jun 11, 2025
2f0fe42
Update release-spec-runner.yml
andreaangiolillo Jun 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/generate-bump-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
inputs:
atlas_admin_v1_doc_id:
description: 'Bump Doc ID for the v1 spec'
required: true
required: false
type: string
atlas_admin_v2_doc_id:
description: 'Bump Doc ID for the v2 specs'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-spec-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
spectral_version: ${{ vars.SPECTRAL_VERSION }}
foascli_version: ${{ vars.FOASCLI_VERSION }}
atlas_admin_v2_doc_id: ${{vars.ATLAS_ADMIN_V2_DOC_ID_DEV }}
atlas_admin_v1_doc_id: ${{vars.ATLAS_ADMIN_V1_DOC_ID_DEV }}

release-spec-qa:
name: Release OpenAPI Spec for QA
needs: release-preparation
Expand All @@ -82,7 +82,7 @@ jobs:
spectral_version: ${{ vars.SPECTRAL_VERSION }}
foascli_version: ${{ vars.FOASCLI_VERSION }}
atlas_admin_v2_doc_id: ${{vars.ATLAS_ADMIN_V2_DOC_ID_QA }}
atlas_admin_v1_doc_id: ${{vars.ATLAS_ADMIN_V1_DOC_ID_QA }}

release-spec-staging:
name: Release OpenAPI Spec for STAGING
needs: release-preparation
Expand All @@ -102,7 +102,7 @@ jobs:
spectral_version: ${{ vars.SPECTRAL_VERSION }}
foascli_version: ${{ vars.FOASCLI_VERSION }}
atlas_admin_v2_doc_id: ${{vars.ATLAS_ADMIN_V2_DOC_ID_STAGING }}
atlas_admin_v1_doc_id: ${{vars.ATLAS_ADMIN_V1_DOC_ID_STAGING }}

release-spec-prod:
name: Release OpenAPI Spec for PROD
needs: release-preparation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ on:
type: string
atlas_admin_v1_doc_id:
description: 'Bump Doc ID for the v1 spec'
required: true
required: false
type: string
atlas_admin_v2_doc_id:
description: 'Bump Doc ID for the v2 specs'
Expand Down