feat(catalog): create the catalog_plans storage (#6288) #3207
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: "Internal Build" | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| ref: | |
| description: "Git ref to build from lago-api (SHA, tag, or branch). Defaults to main." | |
| required: false | |
| default: "main" | |
| sidekiq_pro: | |
| type: boolean | |
| default: true | |
| description: Enable Sidekiq Pro | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| lago-internal: | |
| name: Lago Internal | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Repository Dispatch | |
| uses: peter-evans/repository-dispatch@v4.0.1 | |
| with: | |
| token: ${{ secrets.GH_TOKEN}} | |
| repository: getlago/lago-deploy | |
| event-type: api-push-main | |
| client-payload: '{"ref": "${{ github.event.client_payload.ref || inputs.ref }}", "sha": "${{ github.sha }}"}' |