From d3ced65524694edef467216fd8474214d1f85ea5 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 24 May 2024 05:30:17 +0200 Subject: [PATCH] Remove --- .github/workflows/new-issue.yml | 23 ----------------------- .github/workflows/new-pr.yml | 23 ----------------------- 2 files changed, 46 deletions(-) delete mode 100644 .github/workflows/new-issue.yml delete mode 100644 .github/workflows/new-pr.yml diff --git a/.github/workflows/new-issue.yml b/.github/workflows/new-issue.yml deleted file mode 100644 index 79abf88d08..0000000000 --- a/.github/workflows/new-issue.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: "Issues - Post to Gitter" -on: - issues: - types: - - opened -jobs: - post-to-gitter: - runs-on: ubuntu-latest - steps: - - name: Send issue to Gitter - id: issue-gitter - uses: JC5/firefly-iii-dev@main - with: - action: 'ff3:post-to-gitter issue' - output: '' - env: - FIREFLY_III_ROOT: /github/workspace - GH_TOKEN: "" - ISSUE_NUMBER: ${{ github.event.issue.number }} - ISSUE_TITLE: ${{ github.event.issue.title }} - ISSUE_USER: ${{ github.event.issue.user.login }} - REPOSITORY: "firefly-iii/firefly-iii" - GITTER_TOKEN: ${{ secrets.GITTER_TOKEN }} diff --git a/.github/workflows/new-pr.yml b/.github/workflows/new-pr.yml deleted file mode 100644 index 8b663d12f1..0000000000 --- a/.github/workflows/new-pr.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: "PRs - Post to Gitter" -on: - pull_request: - types: - - opened -jobs: - post-to-gitter: - runs-on: ubuntu-latest - steps: - - name: Send PR to Gitter - id: issue-gitter - uses: JC5/firefly-iii-dev@main - with: - action: 'ff3:post-to-gitter pr' - output: '' - env: - FIREFLY_III_ROOT: /github/workspace - GH_TOKEN: "" - PR_NUMBER: ${{ github.event.pull_request.number }} - PR_TITLE: ${{ github.event.pull_request.title }} - PR_USER: ${{ github.event.pull_request.user.login }} - REPOSITORY: "firefly-iii/firefly-iii" - GITTER_TOKEN: ${{ secrets.GITTER_TOKEN }}