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 c31d5f7 commit d8f52c6Copy full SHA for d8f52c6
1 file changed
.github/workflows/ci-bump-component-versions.yaml
@@ -135,8 +135,9 @@ jobs:
135
136
echo "Updated PR #$pr_number"
137
else
138
- echo "Creating new PR..."
+ echo "Creating new draft PR..."
139
gh pr create \
140
+ --draft \
141
--title "$pr_title" \
142
--body "$pr_body" \
143
--repo "${{ github.repository }}" \
@@ -156,7 +157,10 @@ jobs:
156
157
158
- name: Commit changelog entry
159
if: ${{ !env.ACT && steps.bump_component_versions.outputs.has_changes == 'true' }}
160
+ env:
161
+ GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
162
run: |
163
git add .chloggen/
164
git commit -S -m "chore: add changelog entry for otel component version bump"
165
git push origin ${{ env.branch }}
166
+ gh pr ready "${{ env.branch }}" --repo "${{ github.repository }}"
0 commit comments