diff options
author | James McCoy <jamessan@jamessan.com> | 2022-01-09 15:24:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-09 15:24:43 -0500 |
commit | 8f27c4a0417c001fa2dedb6346673da501ea78e5 (patch) | |
tree | 8f50af11791d8127327c037b4d0b9635cc134f5a | |
parent | 4b84544d8624b5b3f7a7864af7a6a110d97cf281 (diff) | |
parent | f29a4ec553ac67ebec3ea42eb96f10a1b858abf0 (diff) | |
download | rneovim-8f27c4a0417c001fa2dedb6346673da501ea78e5.tar.gz rneovim-8f27c4a0417c001fa2dedb6346673da501ea78e5.tar.bz2 rneovim-8f27c4a0417c001fa2dedb6346673da501ea78e5.zip |
Merge pull request #17013 from dundargoc/ci/continue-on-error
ci: add a continue-on-error to the add-reviewer jobs
-rw-r--r-- | .github/workflows/labeler.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 7cf6c18aed..a2e0566eb1 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -34,6 +34,13 @@ jobs: run: gh pr edit "$PR_NUMBER" --add-label "$(echo "$PR_TITLE" | sed -E 's|[[:alpha:]]+\((.+)\)!?:.*|\1|')" add-reviewer: + # This job currently doesn't work due to a bug in GitHub CLI. + # + # Issue: https://github.com/cli/cli/issues/4844 + # PR that will fix it: https://github.com/cli/cli/pull/4876 + # + # The current workaround is to temporarily add "continue-on-error" flag so + # the whole workflow doesn't get flagged as a failure. runs-on: ubuntu-latest needs: ["triage", "type-scope"] permissions: @@ -43,7 +50,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_REPO: ${{ github.repository }} PR_NUMBER: ${{ github.event.pull_request.number }} - + continue-on-error: true steps: - name: Get labels id: labels |