Merge pull request #46695 from geoand/#46539-followup #777
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
| # Create the CI Sanity Check entry even when we only have ignored files | |
| name: Quarkus CI Sanity Check | |
| on: | |
| push: | |
| paths: | |
| - '.gitignore' | |
| - '.dockerignore' | |
| - '*.md' | |
| - '*.adoc' | |
| - '*.txt' | |
| - 'adr/**' | |
| - 'jakarta/**' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/*.yml' | |
| - '.github/*.java' | |
| - '.github/*.conf' | |
| - '.sdkmanrc' | |
| pull_request: | |
| paths: | |
| - '.gitignore' | |
| - '.dockerignore' | |
| - '*.md' | |
| - '*.adoc' | |
| - '*.txt' | |
| - 'adr/**' | |
| - 'jakarta/**' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/*.yml' | |
| - '.github/*.java' | |
| - '.github/*.conf' | |
| - '.sdkmanrc' | |
| jobs: | |
| ci-sanity-check: | |
| name: "CI Sanity Check" | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'quarkusio/quarkus' | |
| steps: | |
| - name: Build | |
| run: sleep 1 |