summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-03-11 14:41:48 +0700
committerhathach <[email protected]>2026-03-11 14:41:48 +0700
commit14b594d0f748863d7d47e6a1423c5b96eb476779 (patch)
tree5d5002cc50a29500e2cc24567ddeeea5bdf37b41 /.github/workflows
parent336e89792f9b572c5087b1df479d4e89542f6360 (diff)
parentae3a6255e59e9533f8a1f92b088680acb93ce24d (diff)
Merge branch 'master' into ep0_direct
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/membrowse-comment.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/membrowse-comment.yml b/.github/workflows/membrowse-comment.yml
index 368a52638..952d8ba37 100644
--- a/.github/workflows/membrowse-comment.yml
+++ b/.github/workflows/membrowse-comment.yml
@@ -9,9 +9,10 @@ on:
jobs:
post-comment:
runs-on: ubuntu-latest
+ # Run the comment job even if some of the builds fail
if: >
github.event.workflow_run.event == 'pull_request' &&
- github.event.workflow_run.conclusion == 'success'
+ github.event.workflow_run.conclusion != 'cancelled'
permissions:
contents: read
actions: read
@@ -21,11 +22,12 @@ jobs:
uses: actions/checkout@v6
- name: Post Membrowse PR comment
- if: ${{ secrets.MEMBROWSE_API_KEY != '' }}
+ if: ${{ env.MEMBROWSE_API_KEY != '' }}
uses: membrowse/membrowse-action/comment-action@v1
with:
api_key: ${{ secrets.MEMBROWSE_API_KEY }}
commit: ${{ github.event.workflow_run.head_sha }}
comment_template: .github/membrowse_pr_message.j2
env:
+ MEMBROWSE_API_KEY: ${{ secrets.MEMBROWSE_API_KEY }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}