-
Select Topic AreaBug BodyFollowing the instructions at https://docs.github.com/en/actions/using-workflows/reusing-workflows, I added an I even copied the full reusable workflow example into the file and I'm still getting the same error. What am I doing wrong here? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
What exactly does the trigger configuration look like? A subtle syntax error seems the most likely explanation to me. 😅 |
Beta Was this translation helpful? Give feedback.
-
I believe I have discovered the cause of this problem. I had managed to create (I believe through a different Action) a tag named In short, the error message was accurate, but it wasn't clear that the Workflow being used was from the |
Beta Was this translation helpful? Give feedback.
I believe I have discovered the cause of this problem. I had managed to create (I believe through a different Action) a tag named
main
, in addition to the branch namedmain
. Instead of using the version from themain
branch, I believe the Workflow was continuing to use version ofnode.js.yml
from themain
tag, which was missing theon.workflow_call
trigger as correctly indicated by the error message.In short, the error message was accurate, but it wasn't clear that the Workflow being used was from the
main
tag and not themain
branch.