chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:48 +08:00
commit 77bb5bf71f
3762 changed files with 353249 additions and 0 deletions
@@ -0,0 +1,26 @@
name: Update Linear Status
inputs:
linearApiKey:
required: true
teamName:
required: true
targetLabel:
required: true
runs:
using: 'composite'
steps:
- uses: actions/checkout@v4
- name: Install dependencies
shell: bash
run: pnpm install tsx -w --save-dev
- name: Update issues
shell: bash
run: npx tsx ./.github/scripts/update-linear.ts
env:
LINEAR_API_KEY: ${{inputs.linearApiKey}}
TEAM_NAME: ${{inputs.teamName}}
TARGET_LABEL: ${{inputs.targetLabel}}