sqlite-web 0.7.2
gitea.db
action_run_job
31006 rows, showing page 621
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
6
5
2
2
7d4d920368182d2222ed4f7dd18933b433f88ec2
0
deploy
1
name: Smart Deploy via Rsync Daemon "on":
name: Smart Deploy via Rsync Daemon "on": [push] jobs: deploy: name: deploy runs-on: ubuntu-latest steps: - uses: checkout@v1 - name: Prepare rsync password file run: | # 将密码写入文件(rsync 要求权限为 600) echo "$RSYNC_PASSWORD" > /tmp/rsync.pass chmod 600 /tmp/rsync.pass env: RSYNC_PASSWORD: ${{ secrets.TEST_RSYNC_SECRETS }} - name: Get commit message and decide sync mode run: "COMMIT_MSG=$(git log -1 --pretty=%B | head -n1)\necho \"Commit message: $COMMIT_MSG\"\n\n# 构建 rsync 目标地址\nRSYNC_TARGET=\"rsync://${RSYNC_USER}@${RSYNC_HOST}/${RSYNC_MODULE}/\"\n\nif [[ \"$COMMIT_MSG\" == *\"全量同步\"* ]] || [[ \"$COMMIT_MSG\" == *\"full sync\"* ]]; then\n echo \"\U0001F50D Full sync requested. Syncing all files...\"\n rsync -avz --delete \\\n --exclude='.git' \\\n --exclude='.gitea' \\\n --exclude='node_modules/' \\\n --password-file=/tmp/rsync.pass \\\n ./ \\\n \"$RSYNC_TARGET\"\nelse\n echo \"\U0001F504 Incremental sync (changed files only)...\"\n\n if git rev-parse HEAD~1 >/dev/null 2>&1; then\n git diff --name-only HEAD~1 HEAD > /tmp/changed.txt\n else\n find . -type f | sed 's|^\\./||' > /tmp/changed.txt\n fi\n\n if [ -s /tmp/changed.txt ]; then\n rsync -avz --relative \\\n --files-from=/tmp/changed.txt \\\n --password-file=/tmp/rsync.pass \\\n ./ \\\n \"$RSYNC_TARGET\"\n else\n echo \"✅ No files changed.\"\n fi\nfi\n" env: RSYNC_HOST: ${{ secrets.TEST_RSYNC_HOST }} # 如: 192.168.1.100 RSYNC_USER: ${{ secrets.TEST_RSYNC_USER }} # 如: ahead_rsync_user RSYNC_MODULE: ftp # 对应 rsyncd.conf 中的 [ftp] - name: Clean up password file (optional but safe) run: rm -f /tmp/rsync.pass
...
deploy
null
["ubuntu-latest"]
5
2
1770800269
1770800277
1770800268
1770800277
NULL
NULL
0
Edit
Delete
5
4
2
2
648e5d31ec4f94695fa3cb16e919fa6f6b504503
0
hello
1
name: Hello World "on": [push] jobs: h
name: Hello World "on": [push] jobs: hello: name: hello runs-on: ubuntu-latest steps: - name: Say hello run: echo "Hello, Gitea CI/CD!" - name: Show environment info run: | echo "Runner OS: $(uname -a)" echo "Current directory: $(pwd)" echo "Files in repo:" ls -la
...
hello
null
["ubuntu-latest"]
4
1
1770364149
1770364238
1770364148
1770364238
NULL
NULL
0
Edit
Delete
4
3
2
2
74f43da4be5c177e5405226efa5f1f7303a4b2bb
0
hello
1
name: Hello World "on": [push] jobs: h
name: Hello World "on": [push] jobs: hello: name: hello runs-on: ubuntu-latest steps: - name: Say hello run: echo "Hello, Gitea CI/CD!" - name: Show environment info run: | echo "Runner OS: $(uname -a)" echo "Current directory: $(pwd)" echo "Files in repo:" ls -la
...
hello
null
["ubuntu-latest"]
3
2
1770363134
1770363134
1770363133
1770363135
NULL
NULL
0
Edit
Delete
3
2
2
2
eeeea65072a95dcb64d00de48d403734fce896f6
0
hello
1
name: Hello World "on": [push] jobs: h
name: Hello World "on": [push] jobs: hello: name: hello runs-on: ubuntu-latest steps: - name: Say hello run: echo "Hello, Gitea CI/CD!" - name: Show environment info run: | echo "Runner OS: $(uname -a)" echo "Current directory: $(pwd)" echo "Files in repo:" ls -la
...
hello
null
["ubuntu-latest"]
2
2
1770362886
1770362886
1770362885
1770362887
NULL
NULL
0
Edit
Delete
2
1
3
4
f6b6a3099bdc2128ef1527c4935844f1e9358dac
0
test
0
name: Android CI "on": push: b
name: Android CI "on": push: branches: [master, main, develop] tags: ['v*'] pull_request: branches: [master, main] jobs: test: name: test runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up JDK 11 uses: actions/setup-java@v3 with: cache: gradle distribution: temurin java-version: "11" - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Run unit tests run: ./gradlew test - name: Run lint check run: ./gradlew lint continue-on-error: true - if: always() name: Upload test results uses: actions/upload-artifact@v3 with: name: test-results path: | build/reports/tests/ build/reports/lint-results.html retention-days: "7"
...
test
["build"]
["ubuntu-latest"]
0
4
0
0
1770360030
1770362252
NULL
NULL
0
Edit
Delete
1
1
3
4
f6b6a3099bdc2128ef1527c4935844f1e9358dac
0
build
1
name: Android CI "on": push: b
name: Android CI "on": push: branches: [master, main, develop] tags: ['v*'] pull_request: branches: [master, main] jobs: build: name: build runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up JDK 11 uses: actions/setup-java@v3 with: cache: gradle distribution: temurin java-version: "11" - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Build Debug APK run: ./gradlew assembleDebug - if: startsWith(github.ref, 'refs/tags/') name: Build Release AAR run: ./gradlew assembleRelease - name: Upload Debug artifacts uses: actions/upload-artifact@v3 with: name: debug-build path: build/outputs/ retention-days: "7" - if: startsWith(github.ref, 'refs/tags/') name: Upload Release artifacts uses: actions/upload-artifact@v3 with: name: release-build path: build/outputs/ retention-days: "30"
...
build
null
["ubuntu-latest"]
1
2
1770362250
1770362250
1770360030
1770362251
NULL
NULL
0
Edit
Delete
«
‹
Page 621 / 621
›
»