Deploy SRO for 1359 - Character talent tab translations #140
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 SRO PR | |
run-name: Deploy SRO for ${{ github.event.number }} - ${{ github.event.pull_request.title }} | |
permissions: | |
actions: read | |
contents: read | |
issues: write | |
pull-requests: write | |
on: | |
pull_request_target: | |
branches: | |
- master | |
paths-ignore: | |
- 'apps/gi-frontend/**' | |
- 'apps/gi-frontend-e2e/**' | |
- 'apps/frontend/**' | |
- 'apps/frontend-e2e/**' | |
- 'libs/gi-assets/**' | |
- 'libs/gi-consts/**' | |
- 'libs/gi-dm-localization/**' | |
- 'libs/gi-formula/**' | |
- 'libs/gi-good/**' | |
- 'libs/gi-localization/**' | |
- 'libs/gi-stats/**' | |
- 'libs/gi-svgicons/**' | |
- 'libs/gi-util/**' | |
- 'libs/gi-ui/**' | |
types: [opened, reopened, synchronize, labeled] | |
jobs: | |
call-deploy-frontend: | |
uses: ./.github/workflows/deploy-frontend.yml | |
with: | |
frontend_name: 'sr-frontend' | |
repo_full_name: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.merge_commit_sha }} | |
deployment_name: ${{ github.event.number }} | |
pr_repo: ${{ vars.PR_REPO }} | |
show_dev_components: ${{ contains(github.event.pull_request.labels.*.name, 'showDevComponents') }} | |
secrets: inherit |