bad commit to test pull request check annotations #4
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: Build | |
| on: | |
| pull_request: | |
| paths: | |
| src/** | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| pull_request: | |
| name: Pull request | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'pull_request' }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Upload source | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: Filtering+ for Tumblr (#${{ github.event.pull_request.number }}) | |
| path: src/** | |
| workflow_dispatch: | |
| name: Workflow dispatch | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event_name == 'workflow_dispatch' }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Upload source | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: Filtering+ for Tumblr (${{ github.ref_name }} ${{ github.sha }}) | |
| path: src/** |