From 7c45b21aa731f5e0c3316219b67494e2b0973d2c Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Thu, 20 Apr 2023 00:11:43 -0500 Subject: [PATCH 1/4] Update ci.yml --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b37e7f00..e4599c64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,3 +70,9 @@ jobs: coverage report coverage xml if: success() || failure() + + - name: Publish coverage report + uses: orgoro/coverage@v3 + with: + coverageFile: coverage.xml + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From b9623ed424751f57989784c5a076ab44ee0ccb2c Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Thu, 20 Apr 2023 00:21:20 -0500 Subject: [PATCH 2/4] fix: add new line back --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4599c64..1ef02453 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,4 +75,4 @@ jobs: uses: orgoro/coverage@v3 with: coverageFile: coverage.xml - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} From 9cb4739e4a19fc34b934c1836e0a150d2c39712a Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Thu, 20 Apr 2023 00:22:10 -0500 Subject: [PATCH 3/4] fix: syntax --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ef02453..45482e35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,6 @@ jobs: - name: Publish coverage report uses: orgoro/coverage@v3 - with: - coverageFile: coverage.xml - token: ${{ secrets.GITHUB_TOKEN }} + with: + coverageFile: coverage.xml + token: ${{ secrets.GITHUB_TOKEN }} From 51550561984c80feb71de56d9c381bdf7335e4d4 Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Thu, 20 Apr 2023 00:25:48 -0500 Subject: [PATCH 4/4] feat: permissions --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 45482e35..1ec7e851 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,9 @@ jobs: if: success() || failure() test: + permissions: + issues: write + pull-requests: write runs-on: ubuntu-latest strategy: matrix: