Until he actually had to use it.
Took 2 hours of reading through examples just to deploy the site.
Turns out, it is hard to do even just the bash
stuff when you can’t see the container.
1 point
Well, it does have triggers for other branches:
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
So, most probably would have a way to run it on other branches.
6 points
You can also use the workflow_dispatch
execution pattern and use some data input params and execute through the portal interface.
However, do be careful about trusting input params without sanitizing them (GH has docs around this).
1 point