devguard
devguard copied to clipboard
When following the github actions workflow integration it causes an error
This step needs to be documentated, to fix this, you have to go into the settings of your repo
and enable these settings, there is some debate on the settings, since it takes much more responsiblity
additionally if the github seems to have issues
Apparently the solution is to run another Workflow such as
# .github/workflows/hello-world.yml
name: Hello World
on:
push:
branches:
- main
workflow_dispatch:
jobs:
say-hello:
runs-on: ubuntu-latest
steps:
# (optional) Code aus dem Repo auschecken
- name: Checkout repository
uses: actions/checkout@v3
# Hello‑World echo
- name: Echo Hello World
run: echo "Hello World"
thats makes helps the whole workflow start up (don't ask why it works, it just works, blame github)