chore(deps): trigger a release based with changie updates (#58) #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: release-composite | |
on: | |
push: | |
# tags: | |
# - 'v*' | |
branches: [main] | |
paths: [CHANGELOG.md] # your changelog file if different | |
workflow_dispatch: | |
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 | |
release: | |
needs: test | |
uses: ./.github/workflows/release.yml | |
secrets: inherit |