From 8667d58cf4553ef047e5f963194b8233661aeb08 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Thu, 30 Mar 2023 17:26:54 -0400 Subject: [PATCH] fewer issues for build failures --- .github/NEW_VERSION_ISSUE_TEMPLATE.md | 7 ----- .github/workflows/complain.yml | 43 ++++++++++++++++++++------- 2 files changed, 33 insertions(+), 17 deletions(-) delete mode 100644 .github/NEW_VERSION_ISSUE_TEMPLATE.md diff --git a/.github/NEW_VERSION_ISSUE_TEMPLATE.md b/.github/NEW_VERSION_ISSUE_TEMPLATE.md deleted file mode 100644 index 29e0a4d7..00000000 --- a/.github/NEW_VERSION_ISSUE_TEMPLATE.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "❌ {{env.PACKAGE}}" -assignees: jhheider -labels: build-failure ---- - -build logs: {{env.URL}} diff --git a/.github/workflows/complain.yml b/.github/workflows/complain.yml index 0a94a2fd..994810c5 100644 --- a/.github/workflows/complain.yml +++ b/.github/workflows/complain.yml @@ -17,17 +17,40 @@ jobs: complain: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - if: github.ref_name == 'main' - - - uses: JasonEtco/create-an-issue@v2 - if: github.ref_name == 'main' + - name: Find issue + uses: actions-cool/issues-helper@v3 + id: find with: - filename: ./.github/NEW_VERSION_ISSUE_TEMPLATE.md - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PACKAGE: ${{ inputs.projects }} (${{ inputs.platform }}) - URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + actions: 'find-issues' + token: ${{ secrets.GITHUB_TOKEN }} + issue-state: 'open' + title-includes: "❌ build issues: ${{ input.projects }}" + labels: 'build-failure' + + - name: Create issue + uses: actions-cool/issues-helper@v3 + id: create + if: ${{ steps.find.outputs.issues == '[]' }} + with: + actions: 'create-issue' + token: ${{ secrets.GITHUB_TOKEN }} + title: "❌ build issues: ${{ input.projects }}" + body: "Running log of build failures for ${{ input.projects }}" + labels: 'build-failure' + assignees: 'jhheider' + + - name: Log comment + uses: actions-cool/issues-helper@v3 + with: + actions: 'create-comment' + token: ${{ secrets.GITHUB_TOKEN }} + issue-number: ${{ steps.create.outputs.issue-number || fromJSON(steps.find.outputs.issues)[0].number }} + body: | + # Build failure + ## ${{ input.projects }} + ### ${{ inputs.platform }} + + logs: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} - uses: martialonline/workflow-status@v3 id: status