Replies: 3 comments
-
|
🕒 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.
-
|
hey, since you're using workflow_dispatch, the pipeline won't run automatically—you have to manually click a button to start it. looking at your screenshot, the Run workflow dropdown is missing (it should be on the right side, next to the "Filter workflow runs" bar). that almost always happens for one of two reasons: check the path: double-check that your file is in .github/workflows/ (with the dot). if it's just in a workflows folder or the root, github ignores it. default branch: strictly speaking, the file must exist on the repo's default branch (usually main or master) for the manual button to appear. if you pushed this to a feature branch, the button won't show up until you merge it to default. once github picks it up, a grey "Run workflow" button will appear on that screen so you can input your prompt. |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Question
What GitHub Actions topic or product is this about?
Misc
Discussion Details
Here is the yAml i am using :
`name: Windows VM with Office (Terraform)
on:
workflow_dispatch:
inputs:
prompt:
description: "Terraform VM Creation"
required: true
type: string
jobs:
deploy:
runs-on: ubuntu-latest
`
I am in default branch and indentation is correct.
Please suggest. Thank you
Beta Was this translation helpful? Give feedback.
All reactions