Replies: 5 comments 1 reply
-
|
Following as I would love to see the
Wait until you read about Status vs Checks vs Status Checks!!! 😄 |
Beta Was this translation helpful? Give feedback.
-
|
while looking for something else, I stumbled upon this question again. I've noticed that while the GitHub Actions platform doesnt support the I often build my actions as workflows with the workflow_dispatch event first to build & test, and then move them into an action. I'm doing a presentation and while building my action for the demo, I accidentally forgot to remove the But I was able to use the action without GitHub Actions platform complaining about them being there: https://github.com/gilzow/github-actions-presentation/actions/runs/6174619490/job/16759624988 |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
-
|
No resolution yet, not marking as resolved. |
Beta Was this translation helpful? Give feedback.
-
|
See also actions/runner#2238 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
With a workflow that has a
workflow_call:you can add inputs.These inputs have a type and default value reflecting the type.
Docs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_callinputs
Schema validation: https://json.schemastore.org/github-workflow.json
Composite Actions also have inputs but lack the
type:key and are always strings.Docs: https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs
Schema validation: https://json.schemastore.org/github-action.json
Why is this different here?
It seems that only the workflow adheres to the input-context while (composite) actions are whole different
also the name for both is so confusing. GitHub Actions, which has workflows and actions which both are separate things.
Beta Was this translation helpful? Give feedback.
All reactions