Files
lneto/.github/workflows/memci-comment.yml
T
Pat Whittingslow d7f3924489 prevent aggressive DCE in MWE w/ TinyGo and cull fmt package (#196)
* cull fmt package use and prevent aggressive DCE in MWE example with TinyGo

* add noslog build tag and small reference section to README

* add memci

* fix ci

* whoops, forgot memci.json to gitignore

* whoops x2

* use noslog build tag

* don't go ham on removing fmt useful data

* remove old benchmarking CI
2026-09-06 13:17:14 -07:00

25 lines
587 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: [CI]
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 }}