From 9d15d4e2a29537b737159d88a1d734403733fcd4 Mon Sep 17 00:00:00 2001 From: Dimitris Platis Date: Sat, 1 Jun 2024 17:15:08 +0300 Subject: [PATCH] [DO NOT MERGE] Try out the new feature blop --- .github/workflows/duplicate-code-detection.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/duplicate-code-detection.yml b/.github/workflows/duplicate-code-detection.yml index 9869240..21c479f 100644 --- a/.github/workflows/duplicate-code-detection.yml +++ b/.github/workflows/duplicate-code-detection.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - - name: Check for duplicate code + - name: Check for duplicate code (1) uses: ./ with: github_token: ${{ secrets.GITHUB_TOKEN }} @@ -19,3 +19,16 @@ jobs: fail_above: 70 warn_above: 15 one_comment: true + header_message_start: '## 📌 Duplicate code detection tool report (1)' + - name: Check for duplicate code (2) + uses: ./ + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + directories: "./" + # Only examine .h and .cpp files + file_extensions: "py" + ignore_below: 1 + fail_above: 70 + warn_above: 15 + one_comment: true + header_message_start: '## 📌 Duplicate code detection tool report (2)'