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
205 changes: 0 additions & 205 deletions .github/actions/r2-cache/action.yml

This file was deleted.

6 changes: 4 additions & 2 deletions .github/actions/setup-bun/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
- name: Restore node_modules from R2
id: restore
if: inputs.cache-token != ''
uses: ./.github/actions/r2-cache
uses: andreiships/shared-ai-standards/.github/actions/r2-cache@41b2466c374cddf778ed0ea5bb2d08db7d9939d7 # main
with:
action: restore
key: opencode/node-modules/${{ runner.os }}/${{ hashFiles('**/bun.lock') }}
Expand All @@ -39,6 +39,7 @@ runs:
sdks/*/node_modules
cache-token: ${{ inputs.cache-token }}
axiom-token: ${{ inputs.axiom-token }}
metrics-script: scripts/ci/r2-cache-metrics.sh

- name: Install dependencies
if: steps.restore.outputs.cache-hit != 'true'
Expand All @@ -47,7 +48,7 @@ runs:

- name: Save node_modules to R2
if: inputs.cache-token != '' && steps.restore.outputs.cache-hit != 'true'
uses: ./.github/actions/r2-cache
uses: andreiships/shared-ai-standards/.github/actions/r2-cache@41b2466c374cddf778ed0ea5bb2d08db7d9939d7 # main
with:
action: save
key: opencode/node-modules/${{ runner.os }}/${{ hashFiles('**/bun.lock') }}
Expand All @@ -59,3 +60,4 @@ runs:
sdks/*/node_modules
cache-token: ${{ inputs.cache-token }}
axiom-token: ${{ inputs.axiom-token }}
metrics-script: scripts/ci/r2-cache-metrics.sh
4 changes: 2 additions & 2 deletions .github/workflows/pr-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ jobs:

await removeLabel('needs:title');

// Check for linked issue (skip for docs/refactor PRs)
const skipIssueCheck = /^(docs|refactor)\s*(\([a-zA-Z0-9-]+\))?\s*:/.test(title);
// Check for linked issue (skip for docs/refactor/chore PRs — maintenance tasks don't need issues)
const skipIssueCheck = /^(docs|refactor|chore)\s*(\([a-zA-Z0-9-]+\))?\s*:/.test(title);
if (skipIssueCheck) {
await removeLabel('needs:issue');
console.log('Skipping issue check for docs/refactor PR');
Expand Down
62 changes: 0 additions & 62 deletions scripts/lib/curl-retry.sh

This file was deleted.

Loading