devguard icon indicating copy to clipboard operation
devguard copied to clipboard

When following the github actions workflow integration it causes an error

Open 5byuri opened this issue 8 months ago • 0 comments

Image

This step needs to be documentated, to fix this, you have to go into the settings of your repo

Image

and enable these settings, there is some debate on the settings, since it takes much more responsiblity Image

additionally if the github seems to have issues

Image

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)

5byuri avatar Apr 17 '25 12:04 5byuri