This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch org_label_success in repository https://gitbox.apache.org/repos/asf/superset.git
commit 8c66a27742c789e641d726e6d37c96261778f148 Author: Maxime Beauchemin <[email protected]> AuthorDate: Thu May 9 18:48:05 2024 -0700 fix: set supersetbot orglabel to always succeed For reasons I can't seem to understand or conditions I cannot reproduce, the GHA that auto-add org labels based on user association fails for dpgaspar. For now I just want to set this to never fail as this is not critical in any ways, maybe I can troubleshoot later. --- .github/workflows/issue_creation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue_creation.yml b/.github/workflows/issue_creation.yml index 43735e4319..2ea1de2b0a 100644 --- a/.github/workflows/issue_creation.yml +++ b/.github/workflows/issue_creation.yml @@ -31,4 +31,4 @@ jobs: # Label the issue with the appropriate org using supersetbot # - this requires for the author to be publicly associated with their org # - and for the org to be listed in `supersetbot/src/metadata.js` - supersetbot orglabel --issue ${{ github.event.number }} --repo ${{ github.repository }} + supersetbot orglabel --issue ${{ github.event.number }} --repo ${{ github.repository }} || true
