llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-github-workflow Author: Aiden Grossman (boomanaiden154) <details> <summary>Changes</summary> This only does this for Linux currently as the issue-write workflow currently does not support writing out multiple comments. This gets the ball rolling as the failures that most people see are common to both platforms. Ensuring we have coverage on Windows for comments will be done in a future patch. --- Full diff: https://github.com/llvm/llvm-project/pull/166609.diff 2 Files Affected: - (modified) .github/workflows/issue-write.yml (+1) - (modified) .github/workflows/premerge.yaml (+7) ``````````diff diff --git a/.github/workflows/issue-write.yml b/.github/workflows/issue-write.yml index 26cd60c070251..8966a1b372dfc 100644 --- a/.github/workflows/issue-write.yml +++ b/.github/workflows/issue-write.yml @@ -7,6 +7,7 @@ on: - "Check for private emails used in PRs" - "PR Request Release Note" - "Code lint" + - "CI Checks" types: - completed diff --git a/.github/workflows/premerge.yaml b/.github/workflows/premerge.yaml index 973d3abf358ce..2b88ebd3e6106 100644 --- a/.github/workflows/premerge.yaml +++ b/.github/workflows/premerge.yaml @@ -116,6 +116,13 @@ jobs: path: artifacts/ retention-days: 5 include-hidden-files: 'true' + - name: Upload Comment + if: always() + continue-on-error: true + with: + name: workflow-args + path: | + comments premerge-checks-windows: name: Build and Test Windows `````````` </details> https://github.com/llvm/llvm-project/pull/166609 _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
