We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11c71ed commit 351ef11Copy full SHA for 351ef11
.github/workflows/branch-cleanup.yml
@@ -14,8 +14,8 @@ permissions:
14
jobs:
15
clean-release-branches:
16
runs-on: ubuntu-latest
17
- # Only run if the PR is from backend-release or frontend-release branches
18
- if: github.event.pull_request.head.ref == 'backend-release' || github.event.pull_request.head.ref == 'frontend-release'
+ # Only run if the PR is from backend-release, frontend-release, or gateway-release branches
+ if: github.event.pull_request.head.ref == 'backend-release' || github.event.pull_request.head.ref == 'frontend-release' || github.event.pull_request.head.ref == 'gateway-release'
19
steps:
20
- name: Delete release branch
21
uses: actions/github-script@v7
0 commit comments