File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
3131 os : ${{ matrix.os }}
3232 - name : " Sync code base"
3333 env :
34- PR_URL : ${{github.event.pull_request.html_url}}
35- GH_TOKEN : ${{secrets.GITHUB_TOKEN}}
34+ PR_URL : ${{ github.event.pull_request.html_url }}
35+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3636 run : |
3737 gh pr checkout ${{ github.event.pull_request.number }}
3838 git config user.name "${GITHUB_ACTOR}"
3939 git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
40- make install
40+ make -j 3 install
4141 git push
4242 gh pr merge --auto --merge "$PR_URL"
4343 gh pr review --approve "$PR_URL"
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ commit:
4141Sources/% : Sources/% /Client.swift Sources/% /Types.swift
4242 @$(MAKE ) commit file=" $@ "
4343
44+ # Prevent submodule update from running in parallel with other jobs
45+ .NOTPARALLEL : Submodule
46+
4447# Update openapi specification if needed
4548.PHONY : Submodule
4649Submodule :
You can’t perform that action at this time.
0 commit comments