🤖 chore(deps): Bump js-yaml from 4.1.0 to 4.1.1 in the npm_and_yarn group across 1 directory #113
This file contains hidden or 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: Call CI Semantic Release Sync | |
| env: | |
| ACTIONS_STEP_DEBUG: true | |
| ACTIONS_RUNNER_DEBUG: true | |
| RUN_TEST: 0 | |
| RUN_BUILD: 0 | |
| RUN_LINT: 0 | |
| RUN_RELEASE: 1 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - stage | |
| - 'feature/**' | |
| - 'bugfix/**' | |
| - 'fix/**' | |
| - 'hotfix/**' | |
| - 'release/**' | |
| - 'dependabot/**' | |
| - 'renovate/**' | |
| - 'chore/**' | |
| - 'test/**' | |
| pull_request: | |
| branches: | |
| - main | |
| - stage | |
| - 'feature/**' | |
| - 'bugfix/**' | |
| - 'fix/**' | |
| - 'hotfix/**' | |
| - 'release/**' | |
| - 'dependabot/**' | |
| - 'renovate/**' | |
| - 'chore/**' | |
| - 'test/**' | |
| jobs: | |
| call-ci-release-sync: | |
| # uses: ./.github/workflows/ci-semantic-release-sync.yml | |
| # uses: variablesoftware/github-workflows/.github/workflows/ci-semantic-release-sync.yml@v1 | |
| uses: variablesoftware/github-workflows/.github/workflows/ci-semantic-release-sync.yml@main | |
| # uses: variablesoftware/github-workflows/.github/workflows/ci-semantic-release-sync.yml@38038641148ab8eaa7c9be80d9041a6c8c80641e | |
| # No secrets block needed for GITHUB_TOKEN | |
| # No additional changes required | |
| with: | |
| RUN_LINT: 0 | |
| RUN_BUILD: 0 | |
| RUN_TEST: 0 | |
| RUN_RELEASE: ${{ inputs.RUN_RELEASE || '1' }} |