diff --git a/.github/workflows/skip_checks.yml b/.github/workflows/skip_checks.yml deleted file mode 100644 index dd4e1970d74..00000000000 --- a/.github/workflows/skip_checks.yml +++ /dev/null @@ -1,26 +0,0 @@ -on: - workflow_call: - inputs: - runs-on: - description: "Type of machine to run on" - required: true - type: string -jobs: - skip_checks: - name: Skip - runs-on: ${{ inputs.runs-on }} - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Analyze PR - run: | - .github/workflows/scripts/check_diff.sh \ - ${{ github.event.pull_request.head.ref }} \ - ${{ github.event.pull_request.base.ref }} \ - ${{ github.event.pull_request.head.repo.clone_url }} - - name: Debug - run: echo "env.SKIP_CHECKS=${{ env.SKIP_CHECKS }}" - outputs: - skip: ${{ env.SKIP_CHECKS }}