Deploy GO (WR) for 1403 - Update sr-formula and add March7th sheet #344
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: Deploy GO (WR) PR | |
run-name: Deploy GO (WR) for ${{ github.event.number }} - ${{ github.event.pull_request.title }} | |
permissions: | |
actions: read | |
contents: read | |
issues: write | |
pull-requests: write | |
on: | |
pull_request: | |
paths-ignore: | |
- 'apps/gi-frontend/**' | |
- 'apps/gi-frontend-e2e/**' | |
- 'apps/sr-frontend/**' | |
- 'apps/sr-frontend-e2e/**' | |
- 'libs/sr-assets/**' | |
- 'libs/sr-consts/**' | |
- 'libs/sr-db/**' | |
- 'libs/sr-dm/**' | |
- 'libs/sr-formula/**' | |
- 'libs/sr-srod/**' | |
- 'libs/sr-stats/**' | |
- 'libs/pando/**' | |
- 'libs/gi-formula/**' | |
types: [opened, reopened, synchronize, labeled] | |
jobs: | |
call-deploy-frontend: | |
uses: ./.github/workflows/deploy-frontend.yml | |
# Forks don't have permission to deploy | |
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | |
with: | |
frontend_name: 'frontend' | |
repo_full_name: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: '' | |
deployment_name: ${{ github.event.number }} | |
pr_repo: ${{ vars.PR_REPO }} | |
show_dev_components: ${{ contains(github.event.pull_request.labels.*.name, 'showDevComponents') }} | |
secrets: inherit |