Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/compliance-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ permissions:

jobs:
close-non-compliant:
if: false # kilocode_change - disabled: not needed in kilocode repo
runs-on: ubuntu-latest
steps:
- name: Close non-compliant issues and PRs after 2 hours
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/duplicate-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
check-duplicates:
if: github.event.action == 'opened'
if: false # kilocode_change - disabled: not needed in kilocode repo
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
contents: read
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pr-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
# kilocode_change start
check-author:
if: false # kilocode_change - disabled: not needed in kilocode repo
uses: ./.github/workflows/check-org-member.yml
with:
username: ${{ github.event.pull_request.user.login }}
Expand All @@ -16,7 +17,7 @@ jobs:

check-duplicates:
needs: check-author
if: needs.check-author.outputs['is-member'] == 'false'
if: false # kilocode_change - disabled: not needed in kilocode repo
# kilocode_change end
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
Expand Down Expand Up @@ -88,6 +89,7 @@ jobs:
fi

add-contributor-label:
if: false # kilocode_change - disabled: not needed in kilocode repo
runs-on: blacksmith-2vcpu-ubuntu-2404 # kilocode_change
permissions:
pull-requests: write
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pr-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
# kilocode_change start
check-author:
if: false # kilocode_change - disabled: not needed in kilocode repo
uses: ./.github/workflows/check-org-member.yml
with:
username: ${{ github.event.pull_request.user.login }}
Expand All @@ -16,7 +17,7 @@ jobs:

check-standards:
needs: check-author
if: needs.check-author.outputs['is-member'] == 'false'
if: false # kilocode_change - disabled: not needed in kilocode repo
# kilocode_change end
runs-on: blacksmith-4vcpu-ubuntu-2404
permissions:
Expand Down
Loading