Skip to content

Commit eaf3113

Browse files
committed
fix: do not createanother PR for every release-please PR merged
1 parent f145a3a commit eaf3113

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ jobs:
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919
# target-branch: chore/my-please-release-testbranch
20+
21+
- name: echo values
22+
run: |
23+
echo "Release created: ${{ steps.rp.outputs.release_created }}"
24+
echo "Release tag_name: ${{ steps.rp.outputs.tag_name }}"
25+
echo "Release sha: ${{ steps.rp.outputs.sha }}"
2026
release-values:
2127
name: "Release values"
2228
needs: [release-please]

release-please-config.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pull-request-header": ":robot: I have created a release *beep* *boop*",
3-
"group-pull-request-title-pattern": "chore: release ${branch}",
3+
"group-pull-request-title-pattern": ":rocket: release ${branch}",
44
"changelog-sections": [
55
{ "type": "feat", "section": "Features", "hidden": false },
66
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
@@ -12,8 +12,7 @@
1212
"packages": {
1313
".": {
1414
"package-name": "monorepo",
15-
"exclude-paths": ["packages", "apps"],
16-
"release-as": "0.0.1-beta0"
15+
"exclude-paths": ["packages", "apps"]
1716
},
1817
"apps/customer": {
1918
"package-name": "customer",

0 commit comments

Comments
 (0)