-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Implemented Collection header update * Unable to sort folders * Detect folder sort changes to deploy collection header + check requests and responses object * Deploy advanced collection * remove dependency on classic collections for the deploy of the advanced collection
- Loading branch information
Showing
5 changed files
with
186 additions
and
34 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,4 +89,45 @@ jobs: | |
SLACK_USERNAME: GitHub Actions | ||
SLACK_AVATAR: "https://avatars3.githubusercontent.com/u/8659759?s=200&v=4" | ||
with: | ||
args: "Deployed Japanese Postman collection :rocket:" | ||
args: "Deployed Japanese Postman collection :rocket:" | ||
|
||
|
||
# Deploys the Advanced version | ||
deploy-adv: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 20 | ||
# needs: deploy-jp | ||
|
||
env: | ||
LOCALES: "en" | ||
JP_OAS3_REPO: "https://github.com/box/box-openapi.git#jp" | ||
PRIVATE_EN_POSTMAN_COLLECTION_ID: "8119550-1ca6cb64-7560-4f24-a2b5-89ba095b1c17" | ||
PUBLIC_EN_POSTMAN_COLLECTION_ID: "8119550-373aba62-5af5-459b-b9a4-e9db77f947a5" | ||
POSTMAN_API_KEY: ${{ secrets.POSTMAN_API_KEY }} | ||
|
||
strategy: | ||
matrix: | ||
node-version: [18.x] | ||
|
||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Deploy the collection | ||
run: | | ||
yarn install | ||
yarn releaseAdvanced en | ||
- name: Send Slack notification | ||
uses: Ilshidur/[email protected] | ||
env: | ||
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | ||
SLACK_USERNAME: GitHub Actions | ||
SLACK_AVATAR: "https://avatars3.githubusercontent.com/u/8659759?s=200&v=4" | ||
with: | ||
args: "Deployed Advanced Postman collection :rocket:" |
This file contains 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
This file contains 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
This file contains 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
This file contains 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