https://github.com/fern-api/action-postman-sync
A GitHub Action for updating a Postman Collection within a Workspace
https://github.com/fern-api/action-postman-sync
fern openapi postman postman-collection
Last synced: 1 day ago
JSON representation
A GitHub Action for updating a Postman Collection within a Workspace
- Host: GitHub
- URL: https://github.com/fern-api/action-postman-sync
- Owner: fern-api
- License: mit
- Created: 2022-10-30T17:03:59.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-09T08:33:50.000Z (about 1 year ago)
- Last Synced: 2025-06-26T01:15:54.884Z (8 days ago)
- Topics: fern, openapi, postman, postman-collection
- Language: TypeScript
- Homepage: https://docs.buildwithfern.com/
- Size: 1.8 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Postman Sync
This action will update your postman collection on `https://www.postman.com`.
## Usage
```yaml
steps:
- name: Checkout repo
uses: actions/checkout@v3- name: Update postman collections
uses: fern-api/action-postman-sync@v1
with:
api-key: ${{ secrets.POSTMAN_API_KEY }}
workspace-id: ${{ secrets.POSTMAN_WORKSPACE_ID }}
collection-path: path/to/collection.json
```
## ContributingRemember to run build and package the code before pushing changes. If you forget to do this, CI will fail!
```bash
npm run build
npm run package
```