feat(HW-697): add Tron support for transaction list #368
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
# Overview | |
# This GitHub Action manages actions to be taken upon the merging of pull requests. | |
# It triggers automatically upon the merging of a pull request into the main branch, | |
# facilitating streamlined post-merge processes such as deployment. | |
# Example: | |
# 1. Mark PR with releaseAfterMerge tag | |
# 2. Provide short description in description of the PR (instead of template) | |
# 3. Build will be sended to Play Store/TestFlight with provided description for internal testing | |
name: Action for Merged PR [TRIGGER] | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
distribute_apps: | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'releaseAfterMerge') | |
name: Distribute Apps | |
uses: ./.github/workflows/distribute.yml | |
secrets: inherit | |
with: | |
STORIES_ENABLED: true | |
BUILD_DESCRIPTION: ${{github.event.pull_request.body}} | |
send_to_review: | |
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'releaseAfterMerge') | |
name: Submit latest to Review | |
uses: ./.github/workflows/review-latest.yml | |
secrets: inherit | |
needs: | |
- distribute_apps |