Remove `--draft` (and related comments) from the creating porting guide
step, as per the noted issue.
This commit is contained in:
Lyle McKarns
2025-09-25 15:52:56 -04:00
committed by GitHub
parent 224218a351
commit 0c37383b46

View File

@@ -74,14 +74,10 @@ jobs:
GITHUB_TOKEN: ${{ steps.create_token.outputs.token }} GITHUB_TOKEN: ${{ steps.create_token.outputs.token }}
run: git push origin "${GIT_BRANCH}" run: git push origin "${GIT_BRANCH}"
- name: Create the porting guide PR as draft - name: Create the porting guide PR
env: env:
GITHUB_TOKEN: ${{ steps.create_token.outputs.token }} GITHUB_TOKEN: ${{ steps.create_token.outputs.token }}
PR_BODY_MESSAGE: |- PR_BODY_MESSAGE: |-
##### SUMMARY
This is a draft PR. Please mark the PR as ready for review to trigger PR checks.
##### ISSUE TYPE ##### ISSUE TYPE
- Docs Pull Request - Docs Pull Request
@@ -91,7 +87,6 @@ jobs:
docs/docsite/rst/porting_guides/porting_guide_${{ env.ANSIBLE_VERSION_MAJOR }}.rst docs/docsite/rst/porting_guides/porting_guide_${{ env.ANSIBLE_VERSION_MAJOR }}.rst
run: >- run: >-
gh pr create gh pr create
--draft
--base devel --base devel
--head "${GIT_BRANCH}" --head "${GIT_BRANCH}"
--title "${CI_COMMIT_MESSAGE}" --title "${CI_COMMIT_MESSAGE}"