Skip to content

release-composite

release-composite #8

---
name: release-composite
on:
push:
branches: [main]
paths: [CHANGELOG.md] # your changelog file if different
workflow_dispatch:
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}-${{ github.action }}
# cancel-in-progress: true
permissions:
pull-requests: write
checks: write
# NOTE: individual jobs define more narrowly scoped permissions.
# Release requires so must be defined here
contents: write
actions: read
security-events: write
jobs:
lint:

Check failure on line 23 in .github/workflows/release-composite.yml

View workflow run for this annotation

GitHub Actions / release-composite

Invalid workflow file

The workflow is not valid. .github/workflows/release-composite.yml (Line: 23, Col: 3): Error calling workflow 'DelineaXPM/dsv-k8s-sidecar/.github/workflows/lint.yml@b2641ba01848d3a3e80966a9214c6f62bd31c015'. The workflow is requesting 'deployments: read, discussions: read, issues: read, packages: read, pages: read, repository-projects: read, statuses: read, id-token: read', but is only allowed 'deployments: none, discussions: none, issues: none, packages: none, pages: none, repository-projects: none, statuses: none, id-to[...]
uses: ./.github/workflows/lint.yml
secrets: inherit
scan:
uses: ./.github/workflows/scan.yml
secrets: inherit
test:
uses: ./.github/workflows/test.yml
secrets: inherit
release:
needs: [test, scan]
uses: ./.github/workflows/release.yml
secrets: inherit