GitHub Actions workflows not triggering after organization was flagged #191208
Replies: 2 comments
-
|
Hey! This can happen when an organization gets flagged or temporarily restricted by GitHub. From what I’ve seen, when an org is flagged, GitHub may silently disable or limit GitHub Actions execution, especially for security/abuse prevention reasons. Here are a few things!!! ✅ 1. Check Actions settings at org level Go to: Make sure: Actions are enabled for the organization In the affected repository: Ensure Actions are enabled Sometimes workflows don’t trigger due to: [skip ci] or [ci skip] in commit messages If you have workflow_dispatch enabled, try triggering it manually from the Actions tab. If it doesn’t run, that’s a strong sign the org restriction is the issue. If your organization was flagged, GitHub may: Block Actions runs In this case, there’s usually nothing you can do except wait for GitHub Support. 💡 Temporary workaround If it’s urgent: Try running workflows in a personal fork (outside the organization) Hope this helps — in most cases this is not a workflow issue, but a restriction applied to the organization itself. Good Luck -- Edwardd-Dev |
Beta Was this translation helpful? Give feedback.
-
GitHub Actions Workflows Stopped After Organization FlaggedWhen an organization is flagged by GitHub (typically for suspected policy violations like spam, abuse, or suspicious activity), GitHub may restrict or suspend GitHub Actions as a preventive measure. This is a common enforcement action and explains why your workflows stopped triggering without any changes to the files. Why Flagging Stops ActionsGitHub's enforcement can include:
The banner you saw indicates your org is under review. During this period, GitHub often disables automated workflows to prevent abuse of their infrastructure. Immediate Steps to Diagnose & Prepare1. Check Organization Moderation StatusGo to your organization's settings: Look for any active restrictions. If Actions are suspended, you'll see a notice here and in the banner. 2. Verify Repository-Level Actions SettingsEven if the org is flagged, individual repo settings might be overridden:
Important: If the org-wide restriction is active, these repo settings may be grayed out or overridden. 3. Review Audit Logs for Policy ViolationsIf you have org admin access: Filter by:
This shows exactly when and why Actions were restricted. Look for entries mentioning "policy violation" or "abuse." 4. Confirm Workflow Syntax (Quick Check)While unlikely the cause (since nothing changed), verify your workflow still has correct name: Example Workflow
on:
push:
branches: [ main ]
# ... other eventsIf you only see 5. Check for Restricted ActionsIf your workflows use third-party actions (e.g.,
Replace any questionable actions with official GitHub-hosted alternatives temporarily. What You Can Do While Waiting for Support
Expected Timeline
Key Documentation ReferencesBottom line: Flagging directly causes Actions suspension. Your immediate actions are to document restrictions, check settings, and appeal via support with clear evidence. Do not modify workflow files—focus on the org-level issue. Once GitHub lifts the flag, Actions typically resume automatically without further changes. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
🏷️ Discussion Type
Question
💬 Feature/Topic Area
Other
Body
Hello! Our organization's GitHub Actions workflows have stopped triggering on push to main. (We haven't made any changes to our workflow files.) I noticed a banner saying our organization has been flagged. Does anyone know if there is a known technical reason why flagging would stop Actions from running, and is there anything we can do on our end to get workflows running again while we wait for support to respond?
Beta Was this translation helpful? Give feedback.
All reactions