mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
Trying no auto flag
This commit is contained in:
parent
c0c29b4879
commit
74a016338b
1 changed files with 4 additions and 6 deletions
10
.github/workflows/changeset-release.yml
vendored
10
.github/workflows/changeset-release.yml
vendored
|
|
@ -69,7 +69,6 @@ jobs:
|
|||
github.event.pull_request.base.ref == 'main' &&
|
||||
github.actor == 'R00-B0T' &&
|
||||
contains(github.event.pull_request.title, 'Changeset version bump')
|
||||
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v4
|
||||
|
|
@ -77,15 +76,14 @@ jobs:
|
|||
token: ${{ secrets.CROSS_REPO_ACCESS_TOKEN }}
|
||||
fetch-depth: 0
|
||||
ref: ${{ env.GIT_REF }}
|
||||
|
||||
# Auto-approve PR
|
||||
- name: Auto approve PR
|
||||
uses: hmarr/auto-approve-action@v4
|
||||
with:
|
||||
review-message: "I'm approving since it's a bump version PR"
|
||||
|
||||
# Enable auto-merge for the PR
|
||||
- name: Enable automerge on PR
|
||||
run: gh pr merge --merge --auto ${{ github.event.pull_request.number }}
|
||||
|
||||
# Auto-merge PR
|
||||
- name: Automerge on PR
|
||||
run: gh pr merge --merge ${{ github.event.pull_request.number }}
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.CROSS_REPO_ACCESS_TOKEN }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue