chore(release): pull main into develop post release v1.93.0 #1441
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: Deploy Configurations To Development DB | |
on: | |
push: | |
branches: | |
- develop | |
pull_request: | |
types: | |
- closed | |
branches: | |
- develop | |
jobs: | |
report-code-coverage: | |
name: Report Code Coverage | |
if: github.event_name == 'push' | |
uses: ./.github/workflows/report-code-coverage.yml | |
secrets: inherit | |
deploy-to-dev: | |
name: Deployment To Development DB | |
# Only merged pull requests must trigger | |
if: github.event.pull_request.merged == true | |
uses: ./.github/workflows/deploy.yml | |
with: | |
deploy_url: https://api.dev.rudderlabs.com | |
secrets: | |
API_USERNAME: ${{ secrets.DEV_USERNAME }} | |
API_PASSWORD: ${{ secrets.DEV_PASSWORD }} | |
SLACK_BOT_TOKEN: $$ {{ secrets.SLACK_BOT_TOKEN }} | |
SLACK_RELEASE_CHANNEL_ID: ${{ secrets.SLACK_RELEASE_CHANNEL_ID }} | |
deploy-to-sources-dev: | |
name: Deployment To Sources Development DB | |
# Only merged pull requests must trigger | |
if: github.event.pull_request.merged == true | |
uses: ./.github/workflows/deploy.yml | |
with: | |
deploy_url: https://sources-api.dev.rudderlabs.com | |
secrets: | |
API_USERNAME: ${{ secrets.DEV_USERNAME }} | |
API_PASSWORD: ${{ secrets.DEV_PASSWORD }} | |
SLACK_BOT_TOKEN: $$ {{ secrets.SLACK_BOT_TOKEN }} | |
SLACK_RELEASE_CHANNEL_ID: ${{ secrets.SLACK_RELEASE_CHANNEL_ID }} |