WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/prerelease-update-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
replace: "${{ github.event.inputs.new_operator_version }}"
include: "**.md"
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3.10.1
uses: peter-evans/create-pull-request@v7.0.8
Copy link

Copilot AI Nov 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The upgrade from v3.10.1 to v7.0.8 includes a breaking change in default behavior: the delete-branch parameter now defaults to true (changed in v4), whereas in v3 it defaulted to false.

This means that after the pull request created by this action is closed or merged, the release branch will be automatically deleted. If you want to preserve the release branches (e.g., release/${{ github.event.inputs.new_operator_version }}), you should explicitly set delete-branch: false in the action configuration.

Example:

- name: Create Pull Request
  uses: peter-evans/[email protected]
  with:
    branch: "release/${{ github.event.inputs.new_operator_version }}"
    title: "Splunk AI Operator ${{ github.event.inputs.new_operator_version }} release"
    reviewers: "${{ steps.dotenv.outputs.REVIEWERS }}"
    delete-branch: false  # Add this to preserve the old behavior
    body: |
      ### Automated Pull Request for Splunk AI Operator Release ${{ github.event.inputs.new_operator_version }}
      * Changes added to docs/ChangeLog-NEW.md. Please filter and update ChangeLog.md
      * Delete ChangeLog-New.md

Copilot uses AI. Check for mistakes.
with:
branch: "release/${{ github.event.inputs.new_operator_version }}"
title: "Splunk AI Operator ${{ github.event.inputs.new_operator_version }} release"
Expand Down
Loading