{"id":"93bb22e3-56ed-4efe-9783-2cbb08ee459f","slug":"andrewneilson-github-actions-skill","name":"github-actions","description":"Write and modify GitHub Actions workflows and custom actions. Covers CI/CD, workflow triggers, jobs, steps, secrets, runners, matrix builds, caching, artifacts, environments, and reusable workflows.","canonicalUrl":"https://xpersona.co/skill/andrewneilson-github-actions-skill","sourceUrl":"https://github.com/andrewneilson/github-actions-skill","homepage":null,"source":"GITHUB_OPENCLEW","vendor":{"slug":"andrewneilson","label":"Andrewneilson","url":"https://github.com/andrewneilson/github-actions-skill"},"protocols":["OPENCLEW"],"capabilities":["markdown"],"trustScore":null,"trustConfidence":"unknown","artifactCount":0,"benchmarkCount":0,"lastRelease":null,"freshnessAt":"2026-04-15T02:14:02.812Z","freshnessLabel":"Apr 15, 2026","securityReviewed":true,"openapiReady":false,"stats":[{"label":"Trust score","value":"Unknown"},{"label":"Compatibility","value":"OpenClaw"},{"label":"Freshness","value":"Apr 15, 2026"},{"label":"Vendor","value":"Andrewneilson"},{"label":"Artifacts","value":"0"},{"label":"Benchmarks","value":"0"},{"label":"Last release","value":"Unpublished"}],"factsPreview":[{"factKey":"docs_crawl","category":"integration","label":"Crawlable docs","value":"6 indexed pages on the official domain","href":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceUrl":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceType":"search_document","confidence":"medium","observedAt":"2026-04-15T05:03:46.393Z","isPublic":true},{"factKey":"vendor","category":"vendor","label":"Vendor","value":"Andrewneilson","href":"https://github.com/andrewneilson/github-actions-skill","sourceUrl":"https://github.com/andrewneilson/github-actions-skill","sourceType":"profile","confidence":"medium","observedAt":"2026-04-15T02:14:03.240Z","isPublic":true},{"factKey":"protocols","category":"compatibility","label":"Protocol compatibility","value":"OpenClaw","href":"https://xpersona.co/api/v1/agents/andrewneilson-github-actions-skill/contract","sourceUrl":"https://xpersona.co/api/v1/agents/andrewneilson-github-actions-skill/contract","sourceType":"contract","confidence":"medium","observedAt":"2026-04-15T02:14:03.240Z","isPublic":true},{"factKey":"traction","category":"adoption","label":"Adoption signal","value":"1 GitHub stars","href":"https://github.com/andrewneilson/github-actions-skill","sourceUrl":"https://github.com/andrewneilson/github-actions-skill","sourceType":"profile","confidence":"medium","observedAt":"2026-04-15T02:14:03.240Z","isPublic":true},{"factKey":"handshake_status","category":"security","label":"Handshake status","value":"UNKNOWN","href":"https://xpersona.co/api/v1/agents/andrewneilson-github-actions-skill/trust","sourceUrl":"https://xpersona.co/api/v1/agents/andrewneilson-github-actions-skill/trust","sourceType":"trust","confidence":"medium","observedAt":null,"isPublic":true}],"highlights":["1 GitHub stars","Trust evidence available"],"agentCard":{"name":"github-actions","description":"Write and modify GitHub Actions workflows and custom actions. Covers CI/CD, workflow triggers, jobs, steps, secrets, runners, matrix builds, caching, artifacts, environments, and reusable workflows.","source":"GITHUB_OPENCLEW","sourceId":"github:1144859101","repository":"https://github.com/andrewneilson/github-actions-skill","documentation":"https://xpersona.co/skill/andrewneilson-github-actions-skill/agent/andrewneilson-github-actions-skill","protocols":["OPENCLEW"],"capabilities":["markdown"],"languages":["typescript"],"install":{"command":"git clone https://github.com/andrewneilson/github-actions-skill.git","ecosystem":"git"},"examples":[{"kind":"example","language":"yaml","snippet":"name: CI                          # Optional: Display name\non: push                          # Trigger event(s)\njobs:\n  build:                          # Job ID (must be unique)\n    runs-on: ubuntu-latest        # Runner environment\n    steps:\n      - uses: actions/checkout@v5 # Use an action\n      - run: echo \"Hello\"         # Run a command"},{"kind":"example","language":"yaml","snippet":"on: push                              # Any push\non: [push, pull_request]              # Multiple events\non:\n  push:\n    branches: [main, 'releases/**']   # Branch filter\n    paths: ['src/**']                 # Path filter\n  pull_request:\n    types: [opened, synchronize]      # Activity types\n  workflow_dispatch:                  # Manual trigger\n    inputs:\n      environment:\n        description: 'Deploy target'\n        required: true\n        type: choice\n        options: [dev, staging, prod]\n  schedule:\n    - cron: '0 0 * * *'               # Daily at midnight UTC"}]}}