You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to generate a workflow which supports manual triggers using workflow_dispatch. For that to happen we need to generate this yml content where workflow_dispatch is an empty object.
on:
workflow_dispatch:
However this does not seem possible using this package. Both of these variants can not actually produce what is needed for GH linter to be happy.
on: [workflow_dispatch: []]
on: [workflow_dispatch: %{}]
The text was updated successfully, but these errors were encountered:
I'm trying to generate a workflow which supports manual triggers using
workflow_dispatch
. For that to happen we need to generate thisyml
content whereworkflow_dispatch
is an empty object.However this does not seem possible using this package. Both of these variants can not actually produce what is needed for GH linter to be happy.
The text was updated successfully, but these errors were encountered: