From f24fef0e0fe3b1e4bc9594b262c1be1cbf8c6c5d Mon Sep 17 00:00:00 2001 From: matiascabello Date: Tue, 28 May 2024 12:31:45 -0300 Subject: [PATCH] added scout gh action --- .github/workflows/scout.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/scout.yml diff --git a/.github/workflows/scout.yml b/.github/workflows/scout.yml new file mode 100644 index 0000000..ad29ac1 --- /dev/null +++ b/.github/workflows/scout.yml @@ -0,0 +1,23 @@ +name: scout-workflow +on: [push] + +jobs: + scout-audit: + runs-on: ubuntu-latest + permissions: + pull-requests: write + contents: write + repository-projects: write + steps: + - name: checkout + uses: actions/checkout@v2 + + - name: do scout + uses: coinfabrik/scout-actions@v2.4 + with: + target: 'payment-channel/' + markdown_output: "true" + + - uses: mshick/add-pr-comment@v2.8.2 + with: + message-path: ${{ github.workspace }}/report.md \ No newline at end of file