From 82ddc79928ac8b0ad5ee95f3c8631d936b718148 Mon Sep 17 00:00:00 2001 From: Ulli Hafner Date: Fri, 14 Jun 2024 15:31:36 +0200 Subject: [PATCH] Delete quality monitor since we do not have any Java code. --- .github/workflows/quality-monitor.yml | 38 --------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/quality-monitor.yml diff --git a/.github/workflows/quality-monitor.yml b/.github/workflows/quality-monitor.yml deleted file mode 100644 index f5408b7..0000000 --- a/.github/workflows/quality-monitor.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: 'Quality Monitor PR' - -on: - pull_request_target: - -jobs: - build: - - runs-on: [ubuntu-latest] - name: Build, test and monitor quality on Ubuntu - - steps: - - uses: actions/checkout@v4 - with: - ref: "refs/pull/${{ github.event.number }}/merge" - - name: Set up JDK 21 - uses: actions/setup-java@v4 - with: - distribution: 'temurin' - java-version: 21 - check-latest: true - cache: 'maven' - - name: Set up Maven - uses: stCarolas/setup-maven@v5 - with: - maven-version: 3.9.6 - - name: Build with Maven - env: - BROWSER: chrome-container - run: mvn -V --color always -ntp clean verify -Ppit -Pci | tee maven.log - - name: Extract pull request number - uses: jwalton/gh-find-current-pr@v1 - id: pr - - name: Run Quality Monitor - uses: uhafner/quality-monitor@v1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - pr-number: ${{ steps.pr.outputs.number }}