DEVDOCS-6537 - Fix link to Quote Statuses content in Quotes Storefron… #929
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: Rebuild Production Dev Center | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger CircleCI Build | |
| run: | | |
| curl --location 'https://circleci.com/api/v2/project/gh/bigcommerce/developer-center/pipeline' \ | |
| --header 'Circle-Token: ${{ secrets.CIRCLECI_TOKEN }}' \ | |
| --header 'content-type: application/json' \ | |
| --data '{ | |
| "branch": "main", | |
| "parameters": { | |
| "build_environment": "production", | |
| "github_triggering_actor": "${{ github.actor }}" | |
| } | |
| }' |