Skip to content

Set workflow permissions #441

Set workflow permissions

Set workflow permissions #441

Workflow file for this run

name: CI-CD
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
init:
uses: ./.github/workflows/init.yml
ci:
uses: ./.github/workflows/ci.yml
needs: init
doc:
uses: ./.github/workflows/doc.yml
needs: ci
cd:
uses: ./.github/workflows/cd.yml
secrets: inherit
needs: doc