Test - Workflow for Testing #86
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: Test - Workflow for Testing | |
| on: | |
| workflow_dispatch: | |
| env: | |
| ASANA_PAT: ${{ secrets.ASANA_ACCESS_TOKEN }} | |
| GH_TOKEN: ${{ secrets.GT_DAXMOBILE }} | |
| jobs: | |
| test-workflow: | |
| runs-on: ubuntu-latest | |
| name: Add here whatever steps you want to test | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| token: ${{ secrets.GT_DAXMOBILE }} | |
| ref: ${{ github.ref }} | |
| - name: Assign task to Github Actor | |
| id: assign-release-task | |
| uses: ./.github/actions/assign-release-task | |
| with: | |
| task_name: 'Android Release 5.263.1 [Halted at 10% rollout]' | |
| asana_token: ${{ secrets.ASANA_ACCESS_TOKEN }} | |
| project_gid: ${{ vars.GH_ANDROID_RELEASE_BOARD_PROJECT_ID }} | |
| username: ${{ github.actor }} | |
| github_token: ${{ secrets.DAXMOBILE_ANDROID_AUTOMATION }} | |
| - name: Print result | |
| run: echo "Asana ID ${{ steps.assign-release-task.outputs.task_id }}" |