[DO NOT MERGE] Skip build and test for doc updates #4027
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: On PR | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
pr-skip-check: | |
runs-on: ubuntu-latest | |
name: Test changed-files | |
outputs: | |
bool: ${{ steps.skip.outputs.bool }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: tj-actions/changed-files@v45 | |
id: changed-files | |
with: | |
files_yaml: | | |
doc: | |
- '**.md' | |
- docs/** | |
- name: ifskip | |
shell: bash | |
id: skip | |
run: | | |
echo "bool=$(.github/scripts/pr-skip-check.sh \ | |
${{ github.event.pull_request.draft }} \ | |
${{ steps.changed-files.outputs.doc_only_changed }})" >> "$GITHUB_OUTPUT" | |
pre-commit: | |
uses: ./.github/workflows/pre-commit.yml | |
secrets: inherit | |
spdx: | |
uses: ./.github/workflows/spdx.yml | |
secrets: inherit | |
build-and-test: | |
if: needs.skip-checks.outputs.bool | |
uses: ./.github/workflows/build-and-test.yml | |
secrets: inherit | |
# When a PR runs on the uplift branch trigger the downstream checks | |
downstream-checks: | |
runs-on: ubuntu-latest | |
needs: build-and-test | |
if: github.event.pull_request.head.ref == 'uplift' | |
strategy: | |
matrix: | |
target-repo: ['tenstorrent/tt-forge-fe', 'tenstorrent/tt-torch', 'tenstorrent/tt-xla'] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
TARGET_REPO: ${{ matrix.target-repo }} | |
WORKFLOW_NAME: 'on-pr.yml' | |
steps: | |
- name: Trigger ${{ env.TARGET_REPO }} tests | |
shell: bash | |
run: | | |
gh workflow run ${{ env.WORKFLOW_NAME }} \ | |
--repo ${{ env.TARGET_REPO }} --ref main \ | |
--field mlir_override=${{ github.event.pull_request.head.sha }} | |
gh run list --workflow=${{ env.WORKFLOW_NAME }} --repo ${{ env.TARGET_REPO }} --limit 1 | |
echo "Triggered ${{ env.TARGET_REPO }} with tt-mlir ${{ github.event.pull_request.head.sha }}" | |
echo "### Triggered [${{ env.TARGET_REPO }}](https://github.com/${{ env.TARGET_REPO }}/actions/workflows/${{ env.WORKFLOW_NAME }}) with tt-mlir ${{ github.event.pull_request.head.sha }} :rocket:" >> $GITHUB_STEP_SUMMARY | |
check-all-green: | |
if: always() | |
needs: | |
- pre-commit | |
- spdx | |
- build-and-test | |
runs-on: Ubuntu-latest | |
steps: | |
- name: Check if the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
allowed-skips: build-and-test | |
jobs: ${{ toJSON(needs) }} |