[ENG-1637] Reimplement Hubspot connector's webhook parsing logic into webhook methods. #578
Workflow file for this run
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
name: Publish JSON catalog | |
on: | |
pull_request: | |
types: [closed] | |
branches: | |
- 'main' | |
jobs: | |
build: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.AMPERSAND_OPS_PAT }} | |
ref: main | |
- name: Check for changes in the catalog | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
catalog: | |
- 'providers/*.go' | |
- name: Run script if catalog has changed | |
if: steps.filter.outputs.catalog == 'true' | |
run: go run scripts/catalog/json.go | |
shell: bash | |
- name: Push changes | |
if: steps.filter.outputs.catalog == 'true' | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Ampersand Ops" | |
git add internal/generated/catalog.json internal/generated | |
git commit -m "[ampersand-ops] auto: update catalog" | |
git remote set-url origin https://x-access-token:${{ secrets.AMPERSAND_OPS_PAT }}@github.com/${{ github.repository }} | |
git push origin HEAD:main | |
env: | |
GITHUB_TOKEN: ${{ secrets.AMPERSAND_OPS_PAT }} |