fix(sdk): unable to use util.exec
in preflight
#23476
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: Pull Request Lint | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
jobs: | |
validate: | |
name: Validate PR title | |
runs-on: ubuntu-latest | |
if: ${{ !startsWith(github.head_ref, 'mergify/merge-queue/') }} | |
steps: | |
- uses: amannn/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
scopes: |- | |
compiler | |
sdk | |
docs | |
cli | |
examples | |
build | |
repo | |
playground | |
tutorial | |
vscode | |
platforms | |
console | |
typescript | |
lsp | |
types: |- | |
feat | |
fix | |
docs | |
chore | |
rfc | |
revert | |
subjectPattern: ^[^A-Z][^:]+[^.]$ | |
subjectPatternError: Subject must start with a lowercase, should not include ':' and should not end with a period | |
requireScope: false |