gitea-workflow-dispatchTrigger Gitea/Forgejo workflow_dispatch via API.
Install via ClawdBot CLI:
clawdbot install Qizhou-Guo/gitea-workflow-dispatchTrigger Gitea/Forgejo workflow_dispatch via API.
GITEA_URL - Gitea API URL (e.g., http://8.137.50.76:10000)GITEA_TOKEN - Gitea API tokennode -e "
const dispatch = require('~/.openclaw/skills/gitea-workflow-dispatch/index.js');
dispatch({
owner: 'gg',
repo: 'web3-mini-game',
workflow: 'deploy-vercel.yml',
ref: 'master'
}).then(r => console.log(r.status, r.ok)).catch(console.error);
"
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| owner | string | ✅ | Repository owner |
| repo | string | ✅ | Repository name |
| workflow | string | ✅ | Workflow file name |
| ref | string | ❌ | Git ref (default: master) |
| inputs | object | ❌ | Workflow inputs |
| dryRun | boolean | ❌ | Test without sending |
Generated Feb 27, 2026
Developers use this skill to automate deployment pipelines by triggering Gitea workflows after code merges. It integrates with CI/CD tools to deploy updates to staging or production environments, reducing manual intervention and speeding up release cycles.
DevOps teams automate infrastructure setup by dispatching workflows that provision cloud resources or configure servers via tools like Terraform or Ansible. This ensures consistent environments and reduces configuration errors in cloud-native projects.
QA engineers trigger workflows to run automated test suites on new code commits, ensuring code quality and catching bugs early. It supports integration with testing frameworks for regression, unit, and performance testing in agile development.
Data engineers use this skill to initiate ETL workflows for processing and analyzing large datasets. It helps automate data ingestion, transformation, and loading tasks, supporting real-time analytics and reporting in data-intensive applications.
Content teams automate publishing workflows for websites or documentation by triggering builds and deployments when content updates are pushed. This streamlines content delivery, ensuring timely updates and reducing manual publishing efforts.
Offer a managed service that integrates this skill with other tools to provide automated workflow solutions for clients. Charge subscription fees based on usage tiers, targeting small to medium businesses needing streamlined DevOps automation.
Provide consulting services to help organizations implement and customize this skill for specific workflow needs. Revenue comes from project-based fees or hourly rates, focusing on enterprises with complex automation requirements.
Develop and sell training courses or certification programs on using this skill for Gitea workflow automation. Monetize through course sales or certification exams, targeting developers and IT professionals seeking to enhance their DevOps skills.
💬 Integration Tip
Ensure GITEA_URL and GITEA_TOKEN are securely configured as environment variables to avoid hardcoding sensitive data in scripts.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Query the DeepWiki MCP server for GitHub repository documentation, wiki structure, and AI-powered questions.
Automated GitHub PR code review with diff analysis, lint integration, and structured reports. Use when reviewing pull requests, checking for security issues,...
Essential Git commands and workflows for version control, branching, and collaboration.
Advanced git operations beyond add/commit/push. Use when rebasing, bisecting bugs, using worktrees for parallel development, recovering with reflog, managing subtrees/submodules, resolving merge conflicts, cherry-picking across branches, or working with monorepos.
Format commit messages using the Conventional Commits specification. Use when creating commits, writing commit messages, or when the user mentions commits, git commits, or commit messages. Ensures commits follow the standard format for automated tooling, changelog generation, and semantic versioning.