Hi!
I have following setup: CodeGen Project is publishing to GitHub repo using “Publish” button.
I need to run extra actions on this PR.
I tried two options to solve problem
- Customize plasmic.yml workflow, add additional steps. But on next Publish Plasmic overrides this file, and all my changes lost
- Create separate action
on: pull_request
. But PRs created don’t trigger other actions
What else can I do to execute additional build steps on PR?
May be I can call webhook with PR link or something to trigger workflow ?