mirror of
https://github.com/soypat/lneto.git
synced 2026-09-04 05:49:02 +00:00
25 lines
590 B
YAML
25 lines
590 B
YAML
name: memci comment
|
|
|
|
# Runs in the base repo's context with a write token, after the untrusted memci
|
|
# workflow finishes. It never checks out or runs PR code; it only consumes the
|
|
# report artifact as inert data.
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: [memci]
|
|
types: [completed]
|
|
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
comment:
|
|
if: github.event.workflow_run.event == 'pull_request'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- uses: soypat/memci/comment@main
|
|
with:
|
|
run-id: ${{ github.event.workflow_run.id }}
|