denied by branch protections #13
-
Wondering what is the best way to work around branch protections?
|
Beta Was this translation helpful? Give feedback.
Answered by
julienloizelet
May 23, 2023
Replies: 1 comment 7 replies
-
@TomVasile simply add a name: Github Action with a cronjob trigger
on:
schedule:
- cron: "0 0 * * *"
permissions:
contents: write
jobs:
cronjob-based-github-action:
name: Cronjob based github action
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - step1
# - step 2
# - step n, use it as the last step
- uses: gautamkrishnar/keepalive-workflow@v1 # using the workflow with default settings You can also follow: gautamkrishnar/blog-post-workflow#67 (comment) |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there,
I had the same error on my workflow (https://github.com/julienloizelet/ddev-playwright/actions/runs/5055025874/jobs/9072377298):
I already have a
…