Skip to content

ci: trigger release with v1.0.1 #2

ci: trigger release with v1.0.1

ci: trigger release with v1.0.1 #2

---
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
jobs:
lint:
uses: ./.github/workflows/lint.yml
secrets: inherit
scan:

Check failure on line 24 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: 24, Col: 3): Error calling workflow 'DelineaXPM/dsv-k8s-sidecar/.github/workflows/scan.yml@05d6af64f410200df52b9c1881052de50fc7716e'. The workflow is requesting 'actions: read, security-events: write', but is only allowed 'actions: none, security-events: none'.
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