From d9a78aca53e2b2438445bdb06942d2f1da99fb5c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Dec 2025 07:35:25 +0000 Subject: [PATCH 1/2] Initial plan From bd9373ab9c96d84f8376f72395b8fed2e11cffa1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Dec 2025 07:39:06 +0000 Subject: [PATCH 2/2] Replace gh pr create with peter-evans/create-pull-request action Co-authored-by: Datacom-Ayden <221437541+Datacom-Ayden@users.noreply.github.com> --- .github/workflows/release.yaml | 31 +++++++++---------------------- 1 file changed, 9 insertions(+), 22 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index da366f5..cb144bc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,25 +27,12 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Create PR for Documentation - id: push_image_info - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - set -e - echo "Start." - # Configure git and Push updates - git config --global user.email github-actions[bot]@users.noreply.github.com - git config --global user.name github-actions[bot] - git config pull.rebase false - branch=automated-documentation-update-$GITHUB_RUN_ID - git checkout -b $branch - message='Automated documentation update' - # Add / update and commit - git add */**/README.md - git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true - # Push - if [ "$NO_UPDATES" != "true" ] ; then - git push origin "$branch" - gh pr create --title "$message" --body "$message" - fi + - name: Create Pull Request for Documentation + uses: peter-evans/create-pull-request@v7 + with: + commit-message: 'Automated documentation update [skip ci]' + branch: automated-documentation-update-${{ github.run_id }} + title: 'Automated documentation update' + body: 'Auto-generated documentation from feature publishing' + add-paths: | + */**/README.md