GitHub Actions Just stopped working #77212
Replies: 2 comments
-
|
i think its the on_push event thats not being actioned. |
Beta Was this translation helpful? Give feedback.
0 replies
This comment was marked as spam.
This comment was marked as spam.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
Hi
I set up some github actions to automatically push files from my repository to my server when I push to certain branches, here is the yml file I am using to do that:
on:
push:
branches:
- staging
name: 🚀 Deploy website on push - Staging
jobs:
web-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v3
up until about an hour ago this was working perfectly and had been for weeks but then it just stopped, whenever I publish a new change to the repo no workflow is triggered so my files are not pushed to my server which is making me less efficient. Does anyone have an idea why this has happened as no error messages or anything are given and how I can go about fixing it, my working guess is that I have hit some sort of usage cap but I haven't been informed of this. Any Help is much appreciated
Beta Was this translation helpful? Give feedback.
All reactions