feat: add deep link param to force open backpack on client open #3017
Workflow file for this run
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: Handle PR Closure | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| jobs: | |
| handle-pr-closure: | |
| name: Clean Up Unity Cloud Target | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.12.3 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r scripts/cloudbuild/requirements.txt | |
| - name: Delete Unity Cloud target | |
| env: | |
| API_KEY: ${{ secrets.UNITY_CLOUD_API_KEY }} | |
| ORG_ID: ${{ secrets.UNITY_CLOUD_ORG_ID }} | |
| PROJECT_ID: ${{ secrets.UNITY_CLOUD_PROJECT_ID }} | |
| TARGET: t_${{ matrix.target }} | |
| BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
| run: python -u scripts/cloudbuild/build.py --delete |