Skip to content

Commit

Permalink
Skip running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Apr 26, 2024
1 parent f59f170 commit 1999de8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/bump_internal_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,24 +125,24 @@ jobs:
exit 1
fi
run_tests:
# run_tests:

name: Run Tests
# name: Run Tests

needs: validate_input_conditions
# needs: validate_input_conditions

if: needs.validate_input_conditions.outputs.skip-release == 'false'
uses: ./.github/workflows/pr.yml
with:
branch: ${{ needs.validate_input_conditions.outputs.release-branch }}
secrets:
ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}
# if: needs.validate_input_conditions.outputs.skip-release == 'false'
# uses: ./.github/workflows/pr.yml
# with:
# branch: ${{ needs.validate_input_conditions.outputs.release-branch }}
# secrets:
# ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}

increment_build_number:

name: Increment Build Number

needs: [ validate_input_conditions, run_tests ]
needs: [ validate_input_conditions ]
runs-on: macos-13-xlarge
timeout-minutes: 10

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/code_freeze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,22 +92,22 @@ jobs:
${{ vars.TEST_MACOS_APP_BOARD_VALIDATION_SECTION_ID }} \
${{ steps.create_release_task.outputs.marketing_version }}
run_tests:
# run_tests:

name: Run Tests
# name: Run Tests

needs: create_release_branch
uses: ./.github/workflows/pr.yml
with:
branch: ${{ needs.create_release_branch.outputs.release_branch_name }}
secrets:
ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}
# needs: create_release_branch
# uses: ./.github/workflows/pr.yml
# with:
# branch: ${{ needs.create_release_branch.outputs.release_branch_name }}
# secrets:
# ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}

increment_build_number:

name: Increment Build Number

needs: [ create_release_branch, run_tests ]
needs: [ create_release_branch ]
runs-on: macos-13-xlarge
timeout-minutes: 10

Expand Down

0 comments on commit 1999de8

Please sign in to comment.