Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/lifecycle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,19 @@ jobs:
with:
filters: |
${{ steps.paths.outputs.filter }}

- name: Find PR comment
if: github.event_name == 'pull_request'
uses: peter-evans/find-comment@v1
id: find-comment
with:
issue-number: ${{ github.event.pull_request.number }}
body-includes: "Automatic commit: build and run "

- id: matrices # TODO: build origin matrices dynamically, consider collapsing this into a .py
name: Construct matrices
env:
PR_COMMENT_BODY: ${{ github.event.comment.body }}
PR_COMMENT_BODY: ${{ steps.find-comment.outputs.comment-body }}
run: |
import os
import json
Expand Down
Loading