Skip to content
Open
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
206 changes: 0 additions & 206 deletions .github/scripts/check-pr-permissions.js

This file was deleted.

9 changes: 2 additions & 7 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ on:
- ".github/workflows/**"
- "test/testdata/**"
- "vendor/**"
- ".github/scripts/**"

jobs:
e2e-tests:
Expand Down Expand Up @@ -127,15 +126,11 @@ jobs:
with:
ref: ${{ inputs.target_ref || github.event.pull_request.head.sha || github.sha }}

# Step to check PR author's org membership and repo permissions.
# This step will fail the job if checks do not pass, skipping subsequent steps.
- name: Check user permissions on PRs
if: github.event_name == 'pull_request_target'
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
uses: pipelines-as-code/ok-to-test@v1
with:
script: |
const script = require('./.github/scripts/check-pr-permissions.js')
await script({github, context, core})
team-slugs: ${{ env.TARGET_TEAM_SLUGS }}

- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
with:
Expand Down
1 change: 1 addition & 0 deletions pkg/adapter/adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ import (
"knative.dev/pkg/system"
)


Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This change adds an unnecessary blank line without any functional improvement or explanation. Per the project's contribution guidelines mentioned in the PR description, 'slop' or low-value changes should be avoided. Please remove this line and ensure the PR has a clear and meaningful purpose.

const globalAdapterPort = "8082"

// For incoming webhook requests and GitHub Apps with many installations the handler takes long
Expand Down
Loading