AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Create Trigger

skill-harness-harness-skills-create-trigger · by harness

Generate Harness Trigger YAML for automated pipeline execution and create via MCP. Use when user says "create trigger", "webhook trigger", "cron trigger", "scheduled build", "artifact trigger", or wants pipelines to run automatically.

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-harness-harness-skills-create-trigger

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-harness-harness-skills-create-trigger)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Create Trigger? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Create Trigger

Generate Harness Trigger YAML and push to Harness via MCP.

Instructions

  1. Identify trigger type - Webhook (Git events), Scheduled (cron), Artifact (registry updates), or Manifest (Helm chart updates)
  2. Configure conditions - Branch filters, payload conditions, cron expression, or artifact path
  3. Generate YAML using the templates below, referencing the target pipeline
  4. Create via MCP using harness_create with resource_type trigger
  5. Verify webhook registration - For webhook triggers, confirm the webhook is registered in the Git provider

Trigger Types

  • Webhook - GitHub, GitLab, Bitbucket, Azure Repos, Custom
  • Scheduled - Cron-based scheduling
  • Artifact - Docker Hub, ECR, GCR, ACR, Nexus
  • Manifest - Helm chart updates

Webhook Trigger (GitHub)

trigger:
  name: PR Trigger
  identifier: pr_trigger
  orgIdentifier: default
  projectIdentifier: my_project
  pipelineIdentifier: ci_pipeline
  source:
    type: Webhook
    spec:
      type: Github
      spec:
        type: PullRequest
        spec:
          connectorRef: github_connector
          autoAbortPreviousExecutions: true
          payloadConditions:
            - key: targetBranch
              operator: Equals
              value: main
          headerConditions: []
          jexlCondition: ""
          actions:
            - Open
            - Reopen
            - Synchronize
  inputYaml: |
    pipeline:
      identifier: ci_pipeline
      properties:
        ci:
          codebase:
            build:
              type: PR
              spec:
                number: 

GitHub Event Types

  • Push - Code pushed to branch
  • PullRequest - PR events (Open, Close, Reopen, Synchronize, Edit)
  • IssueComment - PR comments (Create, Edit, Delete)
  • Release - Release events (Create, Publish, Edit)

Webhook Trigger (GitLab)

trigger:
  name: GitLab Push
  identifier: gitlab_push
  pipelineIdentifier: ci_pipeline
  source:
    type: Webhook
    spec:
      type: Gitlab
      spec:
        type: Push
        spec:
          connectorRef: gitlab_connector
          payloadConditions:
            - key: ref
              operator: Contains
              value: main

Scheduled (Cron) Trigger

trigger:
  name: Nightly Build
  identifier: nightly_build
  orgIdentifier: default
  projectIdentifier: my_project
  pipelineIdentifier: ci_pipeline
  source:
    type: Scheduled
    spec:
      type: Cron
      spec:
        expression: "0 2 * * *"    # 2 AM daily
  inputYaml: |
    pipeline:
      identifier: ci_pipeline
      properties:
        ci:
          codebase:
            build:
              type: branch
              spec:
                branch: main

Cron format:

Artifact Trigger (Docker Registry)

trigger:
  name: New Image Trigger
  identifier: new_image
  pipelineIdentifier: deploy_pipeline
  source:
    type: Artifact
    spec:
      type: DockerRegistry
      spec:
        connectorRef: dockerhub
        imagePath: myorg/myimage
        tag: 
  inputYaml: |
    pipeline:
      identifier: deploy_pipeline
      stages:
        - stage:
            identifier: deploy
            spec:
              service:
                serviceRef: my_service

Artifact Source Types

  • DockerRegistry - Docker Hub
  • Ecr - AWS ECR
  • Gcr - Google Container Registry
  • Acr - Azure Container Registry
  • Nexus3Registry - Nexus
  • AmazonS3 - S3 artifacts

Creating via MCP

Call MCP tool: harness_create
Parameters:
  resource_type: "trigger"
  org_id: ""
  project_id: ""
  body: 

To list existing triggers:

Call MCP tool: harness_list
Parameters:
  resource_type: "trigger"
  org_id: ""
  project_id: ""

Payload Conditions

Filter triggers by webhook payload:

payloadConditions:
  - key: targetBranch
    operator: Equals        # Equals, NotEquals, In, NotIn, StartsWith, EndsWith, Contains, Regex
    value: main
  - key: sourceBranch
    operator: StartsWith
    value: feature/

Common keys: sourceBranch, targetBranch, ref, action, tag

Examples

  • "Create a GitHub PR trigger for CI" - Webhook trigger with PullRequest type
  • "Set up nightly builds at 2 AM" - Scheduled trigger with cron
  • "Trigger deploy when new Docker image is pushed" - Artifact trigger with DockerRegistry
  • "Create a release trigger for tags" - Webhook with Push type, tag filter

Performance Notes

  • Verify payload conditions match actual webhook payloads from the Git provider.
  • For cron triggers, double-check the expression — cron uses UTC timezone.
  • Confirm the target pipeline identifier and inputYaml match the pipeline's expected inputs.

Troubleshooting

Trigger Not Firing

  • Verify webhook is registered in Git provider
  • Check payload conditions match actual payload
  • Ensure connector has correct permissions
  • Test with harness_get on the trigger to verify config

Duplicate Executions

  • Enable autoAbortPreviousExecutions for PR triggers
  • Check for overlapping trigger conditions

Cron Not Running

  • Verify cron expression syntax (5 fields, UTC timezone)
  • Check pipeline identifier is correct
  • Ensure trigger is enabled

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

  • Author: harness
  • Source: harness/harness-skills
  • License: Apache-2.0
  • Homepage: https://developer.harness.io/docs/platform/harness-ai/harness-skills/

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.