Skip to content

Merge

Merge #13

Workflow file for this run

name: CI Workflow
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
secrets: inherit
lint:
name: Lint
uses: ./.github/workflows/lint.yml
secrets: inherit
docker:

Check failure on line 20 in .github/workflows/ci_workflow.yml

View workflow run for this annotation

GitHub Actions / CI Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/ci_workflow.yml (Line: 20, Col: 3): Error calling workflow 'blimp4242/parrot/.github/workflows/docker.yml@432665d48e03c7903bab3702302ab09459f41fce'. The nested job 'build' is requesting 'packages: write', but is only allowed 'packages: read'.
name: Docker
needs: [build, lint]
uses: ./.github/workflows/docker.yml
secrets: inherit