Numark NS4FX Control stems with 2nd row of fadercuts pads #2696
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: pre-commit | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| - uses: pre-commit/action@v3.0.1 | |
| env: | |
| SKIP: rstcheck | |
| - name: "Generate patch file" | |
| if: failure() | |
| run: | | |
| git diff-index -p HEAD > "${PATCH_FILE}" | |
| [ -s "${PATCH_FILE}" ] && echo "UPLOAD_PATCH_FILE=${PATCH_FILE}" >> "${GITHUB_ENV}" | |
| env: | |
| PATCH_FILE: pre-commit.patch | |
| - name: "Upload patch artifact" | |
| if: failure() && env.UPLOAD_PATCH_FILE != null | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: ${{ env.UPLOAD_PATCH_FILE }} | |
| path: ${{ env.UPLOAD_PATCH_FILE }} |