sqlite-web 0.7.2
gitea.db
action_run_job
26855 rows, showing page 538
Create
Query
access
access_token
action
action_artifact
action_run
action_run_index
action_run_job
action_runner
action_runner_token
action_schedule
action_schedule_spec
action_task
action_task_output
action_task_step
action_tasks_version
action_variable
app_state
attachment
auth_token
badge
branch
collaboration
comment
commit_status
commit_status_index
commit_status_summary
commit_sync_log
commit_sync_status
dbfs_data
dbfs_meta
deploy_key
email_address
email_hash
external_login_user
follow
gpg_key
gpg_key_import
hook_task
issue
issue_assignees
issue_content_history
issue_dependency
issue_index
issue_label
issue_pin
issue_user
issue_watch
label
language_stat
lfs_lock
lfs_meta_object
login_source
milestone
mirror
notice
notification
oauth2_application
oauth2_authorization_code
oauth2_grant
org_user
package
package_blob
package_blob_upload
package_cleanup_rule
package_file
package_property
package_version
project
project_board
project_issue
protected_branch
protected_tag
public_key
pull_auto_merge
pull_request
push_mirror
reaction
release
renamed_branch
repo_archiver
repo_hidden_file
repo_indexer_status
repo_license
repo_redirect
repo_topic
repo_transfer
repo_unit
repository
review
review_state
secret
session
sqlite_sequence
star
stopwatch
system_setting
task
team
team_invite
team_repo
team_unit
team_user
topic
tracked_time
two_factor
upload
user
user_badge
user_blocking
user_open_id
user_redirect
user_setting
version
watch
webauthn_credential
webhook
Toggle helper tables
Structure
Content
Query
Insert
Drop
Import
Export
Bulk Delete
id
run_id
repo_id
owner_id
commit_sha
is_fork_pull_request
name
attempt
workflow_payload
job_id
needs
runs_on
task_id
status
started
stopped
created
updated
raw_concurrency
is_concurrency_evaluated
concurrency_group
concurrency_cancel
25666
18897
6
5
00e6c41c98f5eca066cac8efd4dc9e91dfe5f583
0
Migration Deploy Gate
0
name: CI "on": push: branches:
name: CI "on": push: branches: [main] pull_request: branches: [main] env: NODE_VERSION: "20" PNPM_VERSION: "9" jobs: migration-deploy-gate: name: Migration Deploy Gate runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 with: version: ${{ env.PNPM_VERSION }} - uses: actions/setup-node@v4 with: cache: pnpm node-version: ${{ env.NODE_VERSION }} - run: pnpm install --frozen-lockfile - name: Create PostgreSQL extensions on deploy + shadow DB run: | # deploy DB(service container 已建好 juhi_revops_test) psql -h localhost -U juhi -d juhi_revops_test -c "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";" psql -h localhost -U juhi -d juhi_revops_test -c "CREATE EXTENSION IF NOT EXISTS pgcrypto;" psql -h localhost -U juhi -d juhi_revops_test -c "CREATE EXTENSION IF NOT EXISTS pg_trgm;" psql -h localhost -U juhi -d juhi_revops_test -c "CREATE EXTENSION IF NOT EXISTS vector;" # shadow DB(prisma migrate diff 用) psql -h localhost -U juhi -d postgres -c "CREATE DATABASE juhi_shadow_test;" psql -h localhost -U juhi -d juhi_shadow_test -c "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";" psql -h localhost -U juhi -d juhi_shadow_test -c "CREATE EXTENSION IF NOT EXISTS pgcrypto;" psql -h localhost -U juhi -d juhi_shadow_test -c "CREATE EXTENSION IF NOT EXISTS pg_trgm;" psql -h localhost -U juhi -d juhi_shadow_test -c "CREATE EXTENSION IF NOT EXISTS vector;" env: PGPASSWORD: test_password - name: Run migration deploy gate (fresh deploy + drift=0 check) run: | ./scripts/ci-migration-deploy-gate.sh env: DATABASE_URL: postgresql://juhi:test_password@localhost:5432/juhi_revops_test DIRECT_URL: postgresql://juhi:test_password@localhost:5432/juhi_revops_test SHADOW_DATABASE_URL: postgresql://juhi:test_password@localhost:5432/juhi_shadow_test - if: always() name: Upload migration drift artifacts uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: migration-drift-reports path: | reports/migration-drift-diff.latest.sql reports/migration-drift-summary.latest.json retention-days: "14" services: postgres: image: pgvector/pgvector:pg16 env: POSTGRES_DB: juhi_revops_test POSTGRES_PASSWORD: test_password POSTGRES_USER: juhi ports: - 5432:5432 options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 permissions: contents: read
...
migration-deploy-gate
["lint-and-typecheck"]
["ubuntu-latest"]
0
4
0
0
1777531654
1777531840
1
0
Edit
Delete
25665
18897
6
5
00e6c41c98f5eca066cac8efd4dc9e91dfe5f583
0
Governance Audit (HIGH=0 gate)
0
name: CI "on": push: branches:
name: CI "on": push: branches: [main] pull_request: branches: [main] env: NODE_VERSION: "20" PNPM_VERSION: "9" jobs: governance-audit: name: Governance Audit (HIGH=0 gate) runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 with: version: ${{ env.PNPM_VERSION }} - uses: actions/setup-node@v4 with: cache: pnpm node-version: ${{ env.NODE_VERSION }} - run: pnpm install --frozen-lockfile - name: Generate Prisma Client run: pnpm -C backend exec prisma generate - name: Build shared package run: pnpm -C shared run build - name: Audit Prisma↔Zod 契约 run: pnpm -C backend run audit:prisma-zod-contract continue-on-error: true - name: Audit FormRules↔Zod run: pnpm run audit:formrules-zod continue-on-error: true - name: Audit Response Columns run: pnpm run audit:response-columns continue-on-error: true - name: Audit Field Payload run: pnpm run audit:field-payload continue-on-error: true - name: Audit Enum Consistency run: pnpm run audit:enum-consistency continue-on-error: true - name: Audit useListPage ↔ Router run: pnpm run audit:list-page-routes continue-on-error: true - name: Audit Page AI Assist Coverage run: pnpm run audit:ai-assist-coverage continue-on-error: true - name: Audit Page AI Assist Skill Binding run: pnpm run audit:ai-assist-skill-binding continue-on-error: true - name: Audit Page AI Assist Context Providers run: pnpm run audit:context-provider-redact continue-on-error: true - name: Harness Report 聚合 run: pnpm harness report --save continue-on-error: true - if: always() name: Upload audit reports uses: actions/upload-artifact@v4 with: name: governance-audit-reports path: | reports/prisma-zod-contract-audit.latest.json reports/formrules-zod-audit.latest.json reports/response-columns-audit.latest.json reports/field-payload-audit.latest.json reports/enum-consistency-audit.latest.json reports/list-page-routes-audit.latest.json reports/ai-assist-coverage.latest.json reports/ai-assist-skill-binding.latest.json reports/ai-assist-context-providers.latest.json reports/harness-dashboard.latest.json reports/module-grades.latest.json retention-days: "14" - if: always() name: 输出 governance summary run: | if [ -f reports/harness-dashboard.latest.json ]; then node -e " const d = require('./reports/harness-dashboard.latest.json'); const s = d.summary || {}; const lines = [ '## Governance Audit Summary', '', '| Severity | Count |', '|---|---|', \`| CRITICAL | \${s.critical ?? 0} |\`, \`| HIGH | \${s.high ?? 0} |\`, \`| MEDIUM | \${s.medium ?? 0} |\`, \`| LOW | \${s.low ?? 0} |\`, \`| INFO | \${s.info ?? 0} |\`, '', \`- 总 finding: \${s.total ?? 0}\`, \`- 涉及模块: \${s.modulesAffected ?? 0}\`, \`- 审计执行: \${s.auditsRun ?? 0}\`, '', '**HIGH+CRITICAL 必须为 0;任何新增高危 finding 阻塞 PR 合并。**', ]; require('fs').appendFileSync(process.env.GITHUB_STEP_SUMMARY, lines.join('\n') + '\n'); " else echo '⚠️ harness-dashboard.latest.json 未生成,治理门禁判定失败' >> $GITHUB_STEP_SUMMARY fi - name: 校验 HIGH+CRITICAL 必须为 0 run: | if [ ! -f reports/harness-dashboard.latest.json ]; then echo "::error::治理门禁失败:harness-dashboard 未生成" exit 1 fi node -e " const d = require('./reports/harness-dashboard.latest.json'); const s = d.summary || {}; const blocking = (s.high || 0) + (s.critical || 0); if (blocking > 0) { console.error('::error::治理门禁失败:HIGH+CRITICAL = ' + blocking + ',必须为 0'); console.error('详见 governance-audit-reports artifact 中的 harness-dashboard.latest.json'); process.exit(1); } console.log('治理门禁通过:HIGH+CRITICAL = 0'); " permissions: contents: read
...
governance-audit
["lint-and-typecheck"]
["ubuntu-latest"]
0
4
0
0
1777531654
1777531839
1
0
Edit
Delete
25664
18897
6
5
00e6c41c98f5eca066cac8efd4dc9e91dfe5f583
0
Unit Tests
0
name: CI "on": push: branches:
name: CI "on": push: branches: [main] pull_request: branches: [main] env: NODE_VERSION: "20" PNPM_VERSION: "9" jobs: test: name: Unit Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 with: version: ${{ env.PNPM_VERSION }} - uses: actions/setup-node@v4 with: cache: pnpm node-version: ${{ env.NODE_VERSION }} - run: pnpm install --frozen-lockfile - name: Generate Prisma Client run: pnpm -C backend exec prisma generate - name: Build shared package run: pnpm -C shared run build - name: Run unit tests run: pnpm -C backend run test:unit permissions: contents: read
...
test
["frontend-typecheck","lint-and-typech
["frontend-typecheck","lint-and-typecheck"]
...
["ubuntu-latest"]
0
4
0
0
1777531654
1777531839
1
0
Edit
Delete
25663
18897
6
5
00e6c41c98f5eca066cac8efd4dc9e91dfe5f583
0
Lint & Type Check
1
name: CI "on": push: branches:
name: CI "on": push: branches: [main] pull_request: branches: [main] env: NODE_VERSION: "20" PNPM_VERSION: "9" jobs: lint-and-typecheck: name: Lint & Type Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 with: version: ${{ env.PNPM_VERSION }} - uses: actions/setup-node@v4 with: cache: pnpm node-version: ${{ env.NODE_VERSION }} - run: pnpm install --frozen-lockfile - name: Generate Prisma Client run: pnpm -C backend exec prisma generate - name: Build shared package run: pnpm -C shared run build - name: Backend type check run: pnpm -C backend run type-check - name: Lint run: pnpm -C backend run lint permissions: contents: read
...
lint-and-typecheck
null
["ubuntu-latest"]
21992
2
1777531745
1777531836
1777531654
1777531836
0
0
Edit
Delete
25662
18897
6
5
00e6c41c98f5eca066cac8efd4dc9e91dfe5f583
0
Frontend Type Check
1
name: CI "on": push: branches:
name: CI "on": push: branches: [main] pull_request: branches: [main] env: NODE_VERSION: "20" PNPM_VERSION: "9" jobs: frontend-typecheck: name: Frontend Type Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: pnpm/action-setup@v4 with: version: ${{ env.PNPM_VERSION }} - uses: actions/setup-node@v4 with: cache: pnpm node-version: ${{ env.NODE_VERSION }} - run: pnpm install --frozen-lockfile - name: Build shared package run: pnpm -C shared run build - name: 前端类型检查(vue-tsc --noEmit) run: pnpm --filter ./frontend run type-check permissions: contents: read
...
frontend-typecheck
null
["ubuntu-latest"]
21991
2
1777531654
1777531745
1777531654
1777531745
0
0
Edit
Delete
«
‹
Page 538 / 538
›
»