From 49e7b880d39404ee1ddbc51ed18060dd47d1e0fc Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 10 Sep 2021 10:06:08 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=91=EF=B8=8F=20Removes=20issue-report?= =?UTF-8?q?=20action?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/generate-issue-summary.yml | 37 -------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/generate-issue-summary.yml diff --git a/.github/workflows/generate-issue-summary.yml b/.github/workflows/generate-issue-summary.yml deleted file mode 100644 index a7aa3273..00000000 --- a/.github/workflows/generate-issue-summary.yml +++ /dev/null @@ -1,37 +0,0 @@ -# An action to generate summary of current and past issues in Md form, for east searching -name: Generate Issues Summary -on: - workflow_dispatch: # Manual dispatch - schedule: - - cron: '0 1 * * 0' # At 01:00 on Sunday. -env: - OUTPUT_FILE_NAME: .github/ISSUE_REPORT.md - COMMITTER_EMAIL: liss-bot@d0h.co - COMMITTER_NAME: Alicia Bot - COMMITTER_USERNAME: liss-bot - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - uses: brcrista/summarize-issues@v3 - with: - title: 'Dashy Historical Issue Report' - configPath: '.github/issue-report-config.json' - outputPath: ${{ env.OUTPUT_FILE_NAME }} - token: ${{ secrets.BOT_GITHUB_TOKEN }} - - - name: "Commit if any changes were made" - run: | - git remote add github "https://$COMMITTER_USERNAME:${{ secrets.BOT_GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY.git" - git pull github ${GITHUB_REF} --ff-only - if [[ `git status --porcelain` ]]; then - git add ${OUTPUT_FILE_NAME} - git config --global user.email $COMMITTER_EMAIL - git config --global user.name $COMMITTER_NAME - git commit -m "Update $OUTPUT_FILE_NAME" - git push github HEAD:${GITHUB_REF} - fi