Add GitHub Actions workflow for issue sync to TAPD

This commit is contained in:
LuoTing
2026-04-29 14:13:51 +08:00
committed by zhao
parent 57829634f1
commit 3df2ca335c

View File

@@ -0,0 +1,18 @@
name: GitHub Issue 自动同步到 TAPDAPI账号/秘钥版)
on:
issues:
types: [opened, assigned]
jobs:
sync-to-tapd:
runs-on: ubuntu-latest
steps:
- name: 同步 Issue 到 TAPD
uses: fjllr/github-issue-to-tapd@main
with:
tapd_workspace_id: ${{ secrets.TAPD_WORKSPACE_ID }}
tapd_project_id: ${{ secrets.TAPD_PROJECT_ID }}
tapd_username: ${{ secrets.TAPD_API_USERNAME }} # 你的API账号
tapd_api_token: ${{ secrets.TAPD_API_PASSWORD }} # 你的API秘钥
tapd_iteration_id: ${{ secrets.TAPD_ITERATION_ID }}
only_assignee: "luty2018"