-
Notifications
You must be signed in to change notification settings - Fork 7
63 lines (56 loc) · 2 KB
/
release-postman.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Postman Release
on:
pull_request:
branches:
- main
types:
- closed
workflow_dispatch:
permissions:
issues: write
jobs:
release-postman:
if: ${{ github.head_ref == 'api-bot-update' && github.event.pull_request.merged }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fetch OpenAPI Specification
working-directory: ./tools/postman
run: |
make fetch_openapi
- name: Convert the OpenAPI Specification into Collection
id: convert
working-directory: ./tools/postman
run: |
make convert_to_collection
- name: Create Issue
if: ${{ failure() && steps.convert.outcome == 'failure' }}
uses: imjohnbo/issue-bot@572eed14422c4d6ca37e870f97e7da209422f5bd
with:
labels: failed-release
title: "Postman Release: `make convert_to_collection` command failed :scream_cat:"
body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Transform Postman Collection
id: transform
env:
BASE_URL: ${{ vars.ATLAS_PROD_BASE_URL }}
working-directory: ./tools/postman
run: |
make transform_collection
- name: Create Issue
if: ${{ failure() && steps.transform.outcome == 'failure' }}
uses: imjohnbo/issue-bot@572eed14422c4d6ca37e870f97e7da209422f5bd
with:
labels: failed-release
title: "Postman Release: `make transform_collection` command failed :scream_cat:"
body: See https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Collection to Postman
env:
POSTMAN_API_KEY: ${{ secrets.POSTMAN_API_KEY }}
WORKSPACE_ID: ${{ secrets.WORKSPACE_ID }}
working-directory: ./tools/postman
run: |
make upload_collection