From 3637914aea778abe59440f2b0732e433d5fc8857 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 28 Sep 2023 21:52:11 +0200 Subject: [PATCH] CI: remove pullrequest workflow, the GH widget does that --- .github/workflows/pullrequest.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/pullrequest.yml diff --git a/.github/workflows/pullrequest.yml b/.github/workflows/pullrequest.yml deleted file mode 100644 index 5026a4444..000000000 --- a/.github/workflows/pullrequest.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: pullrequest - -on: - pull_request: - types: [opened, closed] - -jobs: - notify: - runs-on: ubuntu-latest - steps: - - name: "notify: new" - if: github.event.action == 'opened' - uses: calamares/actions/matrix-notify@v4 - with: - token: ${{ secrets.MATRIX_TOKEN }} - room: ${{ secrets.MATRIX_ROOM }} - message: | - PR OPENED ${{ github.event.pull_request.html_url }} by ${{ github.actor }} - .. ${{ github.event.pull_request.title }}" - - name: "notify: closed" - if: github.event.action == 'closed' - uses: calamares/actions/matrix-notify@v4 - with: - token: ${{ secrets.MATRIX_TOKEN }} - room: ${{ secrets.MATRIX_ROOM }} - message: | - PR CLOSED ${{ github.event.pull_request.html_url }} by ${{ github.actor }}