fix(cli): skip opencode annotation check on upstream merge PRs
This commit is contained in:
@@ -11,7 +11,12 @@ on:
|
||||
jobs:
|
||||
check-annotations:
|
||||
name: Check kilocode_change annotations
|
||||
if: github.repository == 'Kilo-Org/kilocode'
|
||||
if: >-
|
||||
github.repository == 'Kilo-Org/kilocode' &&
|
||||
(
|
||||
github.event_name != 'pull_request' ||
|
||||
!contains(github.event.pull_request.head.ref, 'kilo-opencode-')
|
||||
)
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
Reference in New Issue
Block a user