Replies: 4 comments
-
|
Hi @zalam003, It might be a configuration issue with your workflow triggers. If you don't see anything in the Actions tab, it usually means GitHub isn't recognizing the event to start a workflow. Could you share your .yml file? It would help to see how your on: triggers are defined. Also, double-check that your branch names match exactly. For example: name: CI Workflow
on:
push:
branches:
- main # Make sure this matches your default branch name
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "Workflow triggered successfully!"Also, check the workflow file is located at directory: |
Beta Was this translation helpful? Give feedback.
-
|
If your workflow isn’t starting on push, the most common reasons are usually related to the workflow file itself rather than GitHub Actions being down. A few things to check:
If all of these look correct, try pushing a small change to the branch again. That usually forces the workflow to start. |
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.
-
|
Hi, If nothing appears in the Actions tab after a push, the issue is usually related to workflow triggers, repository settings, or branch configuration rather than the runner itself. Here are the main things I would check first:
Make sure the workflow file is inside: .github/workflows/ GitHub only detects workflows from this exact directory. Reference:
Confirm that your YAML file contains a valid trigger such as: on: or on: If the workflow only listens to a specific branch and you are pushing to another branch, the workflow will not start.
Go to: Settings → Actions → General Then verify:
Even a small indentation problem can prevent GitHub from recognizing the workflow correctly. You can validate YAML formatting here:
If the repository recently switched from master to main (or vice versa), your workflow may still be targeting the old branch name.
Create a very small workflow to confirm Actions are functioning correctly: name: Test Workflow on: jobs: If this workflow runs, then the issue is likely inside your original configuration. If possible, share your workflow YAML file as well. That would make it easier to identify the exact issue. |
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?
Workflow Deployment
Discussion Details
On push, actions pipeline is not starting. I do not see anything that shows there is an issue. It have been over 2 hours and nothing is in the Actions tab
Beta Was this translation helpful? Give feedback.
All reactions