We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2246d40 commit 500c337Copy full SHA for 500c337
.github/workflows/cd-release.yaml
@@ -43,6 +43,19 @@ jobs:
43
add: ${{ format('{0}/server/server.go', github.workspace) }}
44
cwd: "."
45
pull: "--ff"
46
+ new_branch: cd-release
47
+ - name: Create Pull Request
48
+ id: cpr
49
+ uses: peter-evans/create-pull-request@v5
50
+ with:
51
+ branch: cd-release
52
+ title: "Release v${{ needs.format-version.outputs.version }}"
53
+ token: ${{ secrets.GITHUB_TOKEN }}
54
+ body: "Created by the Release workflow to update DoltgreSQL's version"
55
+ - name: Enable Pull Request Auto-Merge
56
+ run: gh pr merge --merge --auto "cd-release"
57
+ env:
58
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
- name: Build SQL Syntax
60
run: ./build.sh
61
working-directory: ./postgres/parser
0 commit comments