-
Notifications
You must be signed in to change notification settings - Fork 0
feat: shared PR check system for all kyndig repos #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5b7c27a
docs: add PR checks audit for active kyndig repos
thehoegh c12208d
feat(gate): upgrade Bugbot Gate to check unresolved review threads
thehoegh 55b9314
feat: add reusable CI workflow library
thehoegh a17586b
docs: add org baseline and update rollout handoff for all repo catego…
thehoegh 52bda3e
fix: match final PR metadata section
thehoegh 6e61401
fix: upload Python SDK test artifacts from workdir
thehoegh 3655916
fix(bugbot-gate): prefer created_at over author.date as cycle boundary
thehoegh 224d451
fix(bugbot-gate): require both reviewer AND body match to qualify a t…
thehoegh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| name: Node pnpm Build | ||
|
|
||
| # Reusable workflow: install and build. | ||
| # Intended to be called from a CI After Gate workflow triggered by workflow_run. | ||
| # | ||
| # The job name "Build" is stable — branch protection rulesets reference it. | ||
|
|
||
| on: | ||
| workflow_call: | ||
| inputs: | ||
| ref: | ||
| description: Commit SHA or ref to check out. | ||
| required: true | ||
| type: string | ||
| node_version: | ||
| required: false | ||
| type: string | ||
| default: "lts/*" | ||
| pnpm_version: | ||
| description: pnpm version to install. Leave empty to read from packageManager in package.json. | ||
| required: false | ||
| type: string | ||
| default: "" | ||
| install_command: | ||
| required: false | ||
| type: string | ||
| default: "pnpm install --frozen-lockfile" | ||
| build_command: | ||
| required: false | ||
| type: string | ||
| default: "pnpm build" | ||
| working_directory: | ||
| description: Working directory for all commands. | ||
| required: false | ||
| type: string | ||
| default: "." | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| jobs: | ||
| build: | ||
| name: Build | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 15 | ||
| defaults: | ||
| run: | ||
| working-directory: ${{ inputs.working_directory }} | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| with: | ||
| ref: ${{ inputs.ref }} | ||
|
|
||
| - uses: pnpm/action-setup@v4 | ||
| with: | ||
| version: ${{ inputs.pnpm_version }} | ||
|
|
||
| - uses: actions/setup-node@v5 | ||
| with: | ||
| node-version: ${{ inputs.node_version }} | ||
| cache: pnpm | ||
|
|
||
| - name: Install dependencies | ||
| run: ${{ inputs.install_command }} | ||
|
|
||
| - name: Build | ||
| run: ${{ inputs.build_command }} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.