sqlite-web 0.7.2
gitea.db
action_run_job
33006 rows, showing page 661
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
32627
23976
80
5
50f4399dc7bb4ef9be6f97aa60a8e3148667c3e2
0
Runtime, UI, and OS-host acceptance
0
name: Governance "on": pull_request:
name: Governance "on": pull_request: push: branches: - main env: DIGITAL_EMPLOYEE_OS_ROOT: ${{ github.workspace }}/digital-employee-os DIGITAL_EMPLOYEE_OS_SHA: 5cb2f1cc2f9953d47fa0bcfac541400d01603f78 jobs: runtime-acceptance: name: Runtime, UI, and OS-host acceptance runs-on: ubuntu-latest env: DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/device_cloud_ci?schema=public REDIS_URL: redis://127.0.0.1:6379 steps: - name: Checkout device cloud with history uses: actions/checkout@v4 with: fetch-depth: "0" path: device-cloud - name: Checkout pinned Digital Employee OS uses: actions/checkout@v4 with: fetch-depth: "1" path: digital-employee-os ref: ${{ env.DIGITAL_EMPLOYEE_OS_SHA }} repository: laoluojuhai/digital-employee-os token: ${{ secrets.OS_REPO_TOKEN }} - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: "22" - name: Enable pnpm run: | corepack enable corepack prepare pnpm@9.15.9 --activate - name: Install device-cloud dependencies run: pnpm install --frozen-lockfile - name: Install pinned OS dependencies run: pnpm install --frozen-lockfile working-directory: digital-employee-os - name: Generate Prisma clients run: | pnpm prisma:generate pnpm --dir "$DIGITAL_EMPLOYEE_OS_ROOT" prisma:generate - name: Run real DB and Redis acceptance run: pnpm check:runtime - name: Install Playwright browser run: pnpm --filter web exec playwright install --with-deps chromium - name: Run UI acceptance run: pnpm check:ui - name: Create isolated OS-product database run: psql -h 127.0.0.1 -U postgres -d postgres -v ON_ERROR_STOP=1 -c 'CREATE DATABASE device_cloud_os_product_ci' env: PGPASSWORD: postgres - name: Run OS-host acceptance run: pnpm check:os-product:runtime env: DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/device_cloud_os_product_ci?schema=public - name: Prove release evidence matches current source run: pnpm check:evidence services: postgres: image: postgres:16 env: POSTGRES_DB: device_cloud_ci POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres ports: - 5432:5432 options: --health-cmd "pg_isready -U postgres -d device_cloud_ci" --health-interval 5s --health-timeout 5s --health-retries 20 redis: image: redis:7 ports: - 6379:6379 options: --health-cmd "redis-cli ping" --health-interval 5s --health-timeout 5s --health-retries 20 defaults: run: working-directory: device-cloud
...
runtime-acceptance
["static-governance"]
["ubuntu-latest"]
0
4
0
0
1789458924
1789459054
1
0
Edit
Delete
32638
23979
54
5
23c6960de45354e3ea524f9d81ce8b9d2d2fc7af
0
Runtime and UI acceptance
0
name: Governance "on": pull_request:
name: Governance "on": pull_request: push: branches: - main jobs: runtime-acceptance: name: Runtime and UI acceptance runs-on: ubuntu-latest env: DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/base_framework_ci?schema=public REDIS_URL: redis://127.0.0.1:6379 steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: "0" - name: Enable pnpm run: | corepack enable corepack prepare pnpm@9.15.9 --activate - name: Setup Node.js uses: actions/setup-node@v4 with: cache: pnpm node-version: "20" - name: Install dependencies run: pnpm install --frozen-lockfile - name: Generate Prisma clients run: pnpm prisma:generate - name: Run real DB and Redis acceptance run: pnpm check:runtime - name: Install Playwright browser run: pnpm --filter web exec playwright install --with-deps chromium - name: Run UI acceptance run: pnpm check:ui - if: always() name: Upload immutable runtime and UI evidence uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: governance-${{ github.job }}-${{ github.sha }}-${{ github.run_attempt }} path: | reports/runtime-acceptance.latest.json reports/conformance-differential.latest.json reports/ui-acceptance.latest.json retention-days: "30" timeout-minutes: "45" services: postgres: image: postgres:16 env: POSTGRES_DB: base_framework_ci POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres ports: - 5432:5432 options: --health-cmd "pg_isready -U postgres -d base_framework_ci" --health-interval 5s --health-timeout 5s --health-retries 20 redis: image: redis:7 ports: - 6379:6379 options: --health-cmd "redis-cli ping" --health-interval 5s --health-timeout 5s --health-retries 20
...
runtime-acceptance
["static-governance"]
["ubuntu-latest"]
0
4
0
0
1789469862
1789469913
1
0
Edit
Delete
32641
23980
54
5
c358bd2a5db604566b840c6dfb1ade93feeaf558
0
Runtime and UI acceptance
0
name: Governance "on": pull_request:
name: Governance "on": pull_request: push: branches: - main jobs: runtime-acceptance: name: Runtime and UI acceptance runs-on: ubuntu-latest env: DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/base_framework_ci?schema=public REDIS_URL: redis://127.0.0.1:6379 steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: "0" - name: Enable pnpm run: | corepack enable corepack prepare pnpm@9.15.9 --activate - name: Setup Node.js uses: actions/setup-node@v4 with: cache: pnpm node-version: "20" - name: Install dependencies run: pnpm install --frozen-lockfile - name: Generate Prisma clients run: pnpm prisma:generate - name: Run real DB and Redis acceptance run: pnpm check:runtime - name: Install Playwright browser run: pnpm --filter web exec playwright install --with-deps chromium - name: Run UI acceptance run: pnpm check:ui - if: always() name: Upload immutable runtime and UI evidence uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: governance-${{ github.job }}-${{ github.sha }}-${{ github.run_attempt }} path: | reports/runtime-acceptance.latest.json reports/conformance-differential.latest.json reports/ui-acceptance.latest.json retention-days: "30" timeout-minutes: "45" services: postgres: image: postgres:16 env: POSTGRES_DB: base_framework_ci POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres ports: - 5432:5432 options: --health-cmd "pg_isready -U postgres -d base_framework_ci" --health-interval 5s --health-timeout 5s --health-retries 20 redis: image: redis:7 ports: - 6379:6379 options: --health-cmd "redis-cli ping" --health-interval 5s --health-timeout 5s --health-retries 20
...
runtime-acceptance
["static-governance"]
["ubuntu-latest"]
0
4
0
0
1789469962
1789470010
1
0
Edit
Delete
32644
23981
54
5
d6747e3462dad1329a0d99ed090c658cd7a42bed
0
Runtime and UI acceptance
0
name: Governance "on": pull_request:
name: Governance "on": pull_request: push: branches: - main jobs: runtime-acceptance: name: Runtime and UI acceptance runs-on: ubuntu-latest env: DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/base_framework_ci?schema=public REDIS_URL: redis://127.0.0.1:6379 steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: "0" - name: Enable pnpm run: | corepack enable corepack prepare pnpm@9.15.9 --activate - name: Setup Node.js uses: actions/setup-node@v4 with: cache: pnpm node-version: "20" - name: Install dependencies run: pnpm install --frozen-lockfile - name: Generate Prisma clients run: pnpm prisma:generate - name: Run real DB and Redis acceptance run: pnpm check:runtime - name: Install Playwright browser run: pnpm --filter web exec playwright install --with-deps chromium - name: Run UI acceptance run: pnpm check:ui - if: always() name: Upload immutable runtime and UI evidence uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: governance-${{ github.job }}-${{ github.sha }}-${{ github.run_attempt }} path: | reports/runtime-acceptance.latest.json reports/conformance-differential.latest.json reports/ui-acceptance.latest.json retention-days: "30" timeout-minutes: "45" services: postgres: image: postgres:16 env: POSTGRES_DB: base_framework_ci POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres ports: - 5432:5432 options: --health-cmd "pg_isready -U postgres -d base_framework_ci" --health-interval 5s --health-timeout 5s --health-retries 20 redis: image: redis:7 ports: - 6379:6379 options: --health-cmd "redis-cli ping" --health-interval 5s --health-timeout 5s --health-retries 20
...
runtime-acceptance
["static-governance"]
["ubuntu-latest"]
0
4
0
0
1789476826
1789476918
1
0
Edit
Delete
32647
23982
54
5
df53867debc4df305454a4132edebe44819e5445
0
Runtime and UI acceptance
0
name: Governance "on": pull_request:
name: Governance "on": pull_request: push: branches: - main jobs: runtime-acceptance: name: Runtime and UI acceptance runs-on: ubuntu-latest env: DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/base_framework_ci?schema=public REDIS_URL: redis://127.0.0.1:6379 steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: "0" - name: Enable pnpm run: | corepack enable corepack prepare pnpm@9.15.9 --activate - name: Setup Node.js uses: actions/setup-node@v4 with: cache: pnpm node-version: "20" - name: Install dependencies run: pnpm install --frozen-lockfile - name: Generate Prisma clients run: pnpm prisma:generate - name: Run real DB and Redis acceptance run: pnpm check:runtime - name: Install Playwright browser run: pnpm --filter web exec playwright install --with-deps chromium - name: Run UI acceptance run: pnpm check:ui - if: always() name: Upload immutable runtime and UI evidence uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: governance-${{ github.job }}-${{ github.sha }}-${{ github.run_attempt }} path: | reports/runtime-acceptance.latest.json reports/conformance-differential.latest.json reports/ui-acceptance.latest.json retention-days: "30" timeout-minutes: "45" services: postgres: image: postgres:16 env: POSTGRES_DB: base_framework_ci POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres ports: - 5432:5432 options: --health-cmd "pg_isready -U postgres -d base_framework_ci" --health-interval 5s --health-timeout 5s --health-retries 20 redis: image: redis:7 ports: - 6379:6379 options: --health-cmd "redis-cli ping" --health-interval 5s --health-timeout 5s --health-retries 20
...
runtime-acceptance
["static-governance"]
["ubuntu-latest"]
0
4
0
0
1789538530
1789538623
1
0
Edit
Delete
32650
23983
106
5
f978ade7e90469ee1a0a8992c1073d4275b00b51
0
Runtime and UI acceptance
0
name: Governance "on": pull_request:
name: Governance "on": pull_request: push: branches: - main jobs: runtime-acceptance: name: Runtime and UI acceptance runs-on: ubuntu-latest env: DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/tenant_scope_ci?schema=public REDIS_URL: redis://127.0.0.1:6379 steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: "0" - name: Enable pnpm run: | corepack enable corepack prepare pnpm@9.15.9 --activate - name: Setup Node.js uses: actions/setup-node@v4 with: cache: pnpm node-version: "20" - name: Install dependencies run: pnpm install --frozen-lockfile - name: Generate Prisma clients run: pnpm prisma:generate - name: Run real DB and Redis acceptance run: pnpm check:runtime - name: Install Playwright browser run: pnpm --filter web exec playwright install --with-deps chromium - name: Run UI acceptance run: pnpm check:ui - if: always() name: Upload immutable runtime and UI evidence uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: governance-${{ github.job }}-${{ github.sha }}-${{ github.run_attempt }} path: | reports/runtime-acceptance.latest.json reports/conformance-differential.latest.json reports/ui-acceptance.latest.json retention-days: "30" timeout-minutes: "45" services: postgres: image: postgres:16 env: POSTGRES_DB: tenant_scope_ci POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres ports: - 5432:5432 options: --health-cmd "pg_isready -U postgres -d tenant_scope_ci" --health-interval 5s --health-timeout 5s --health-retries 20 redis: image: redis:7 ports: - 6379:6379 options: --health-cmd "redis-cli ping" --health-interval 5s --health-timeout 5s --health-retries 20
...
runtime-acceptance
["static-governance"]
["ubuntu-latest"]
0
4
0
0
1789539963
1789539987
1
0
Edit
Delete
«
‹
Page 661 / 661
›
»