diff --git a/.github/workflows/check-modified-subtree.yml b/.github/workflows/check-modified-subtree.yml index 941e1adc9..90c70991e 100644 --- a/.github/workflows/check-modified-subtree.yml +++ b/.github/workflows/check-modified-subtree.yml @@ -1,28 +1,20 @@ - -name : Check Modified Subtree - - -on : - workflow_dispatch : - - pull_request : - branches : [ master ] - - -jobs : - check : - - runs-on : ubuntu-latest - - steps : - - - - - name : Checkout Repository - uses : actions/checkout@v4 - with : - fetch-depth : 0 # Fetch complete history - clean : false - - - name : Check For Differences - run : ./.github/scripts/check-modified-subtree.sh +name: Check Modified Subtree + +on: + workflow_dispatch: + + pull_request: + branches: [master] + +jobs: + check: + runs-on: ubuntu-latest + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 # Fetch complete history + clean: false + + - name: Check For Differences + run: ./.github/scripts/check-modified-subtree.sh