Skip to content

chore(deps): trigger a release based with changie updates (#32) #6

chore(deps): trigger a release based with changie updates (#32)

chore(deps): trigger a release based with changie updates (#32) #6

---
name: release-composite
on:
push:
# tags:
# - 'v*'
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
test:
uses: ./.github/workflows/test.yml
secrets: inherit
scan:

Check failure on line 29 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: 29, Col: 3): Error calling workflow 'DelineaXPM/github-workflows/.github/workflows/scan.yml@06abea8c069854417e015a373229d0e4ba785410'. 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
# integration:
# needs: test
# uses: ./.github/workflows/integration.yml
# secrets: inherit
release:
needs: test
uses: ./.github/workflows/release.yml
secrets: inherit