From 507d8a95c223b328b33261d572b2179ec6d7d7cb Mon Sep 17 00:00:00 2001 From: kuuuube Date: Tue, 20 Jan 2026 00:58:15 -0500 Subject: [PATCH] Create pr to update config branch on release publish --- .github/workflows/update_config_branch.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/update_config_branch.yml diff --git a/.github/workflows/update_config_branch.yml b/.github/workflows/update_config_branch.yml new file mode 100644 index 0000000..412520c --- /dev/null +++ b/.github/workflows/update_config_branch.yml @@ -0,0 +1,16 @@ +name: Release + +on: + release: + types: [published] + +jobs: + build-win: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: create pull request + run: gh pr create --base v4.x --head main --title "Bump v4.x branch on release publish" + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}