chore(deps): update plugin kotlin-qa to v0.67.2 #3227
Workflow file for this run
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: CI/CD | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
paths-ignore: | |
- 'CHANGELOG.md' | |
- 'LICENSE' | |
- 'README.md' | |
- 'renovate.json' | |
- '.gitignore' | |
- '.mergify.yml' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
dispatcher: | |
runs-on: ubuntu-latest | |
# For PRs execute only on commit since the branch protection require the branch to be up-to-date (optimize the workflow). | |
# Triggers the executions if an external PR is opened. | |
if: >- | |
github.event_name != 'pull_request' | |
|| github.event.pull_request.head.repo.full_name != github.repository | |
|| startsWith(github.head_ref, 'refs/heads/dependabot/') | |
steps: | |
- run: 'true' | |
ci-cd: | |
needs: [ dispatcher ] | |
uses: ./.github/workflows/build-and-release.yml | |
secrets: inherit |