error parsing called workflow: Job referencing reusable action tag errors out #206746
Replies: 3 comments 13 replies
|
💬 Your Product Feedback Has Been Submitted 🎉 Thank you for taking the time to share your insights with us! Your feedback is invaluable as we build a better GitHub experience for all our users. Here's what you can expect moving forward ⏩
Where to look to see what's shipping 👀
What you can do in the meantime 💻
As a member of the GitHub community, your participation is essential. While we can't promise that every suggestion will be implemented, we want to emphasize that your feedback is instrumental in guiding our decisions and priorities. Thank you once again for your contribution to making GitHub even better! We're grateful for your ongoing support and collaboration in shaping the future of our platform. ⭐ |
This comment was marked as low quality.
This comment was marked as low quality.
|
If both tags really resolve to the same commit, I don't think I would spend much time looking for a difference in the workflow contents. GitHub should be parsing the same tree in that case. One thing I would test is the nested workflow reference: Since this workflow is itself being called from another repository, I would try using the newer same-repository syntax instead:
I would also try calling the outer workflow directly by the SHA shown in the error: If the SHA and I'd verify that with: If those are identical, the different result for the two refs is definitely interesting. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Bug
💬 Feature/Topic Area
ARC (Actions Runner Controller)
Discussion Details
The same workflow will work for other repo's in our org, this workflow was previously working in this repo. Tag 6.4.1 is off the same commit as tag 6, tag 6.4.1 succeeds, tag 6 fails.
Error is:
Invalid workflow file: .github/workflows/workflowName.yml#L48
error parsing called workflow
".github/workflows/workflowName.yml"
-> "actionsRepo/.github/workflows/reusableAction.yml@v6" (source tag with sha:1199a05a37bedf7322ed2c8d874f852c1f6f98ee)
--> "./.github/workflows/build_model_reusable_dispatch.yml"
: workflow was not found. See https://docs.github.com/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows for more information.
All reactions