Markdown
The markdown content is where you write natural language instructions for the agentic workflow.
Overview
Section titled “Overview”The markdown is the most important part of your agentic workflow, and should describe its intended operation. The markdown follows the frontmatter. For example:
---...frontmatter...---
# Issue Triage
Read the issue #${{ github.event.issue.number }}. Add a comment to the issue listing useful resources and links.Writing Effective Instructions
Section titled “Writing Effective Instructions”Write instructions as if explaining the task to a new team member. Be specific, provide context about your project and constraints, and structure instructions with headings to guide the agent’s workflow.
# Good: Specific and actionableAnalyze issue #${{ github.event.issue.number }} and add appropriate labels from the repository's label list. Focus on categorizing the issue type (bug, feature, documentation) and priority level (high, medium, low).
# Project ContextThis repository follows semantic versioning and GitHub Flow. When reviewing pull requests, ensure all tests pass, documentation is updated for API changes, and breaking changes are clearly marked.
# Weekly Research Report
## Research AreasFocus on competitor analysis, emerging AI development trends, and community feedback for ${{ github.repository }}.
## Output FormatCreate a structured report with executive summary, key findings by area, and recommended actions.Best Practices
Section titled “Best Practices”Use action-oriented language with clear verbs (analyze, create, update, triage) and specify expected outcomes. Help agents make consistent decisions by providing criteria and examples:
# Issue Labeling CriteriaApply labels: `bug` (incorrect behavior with repro steps), `enhancement` (new features), `question` (help requests), `documentation` (docs/examples). Priority: `high-priority` (security/critical bugs), `medium-priority` (features/non-critical bugs), `low-priority` (nice-to-have improvements).Reference Context Securely
Section titled “Reference Context Securely”Use needs.activation.outputs.text instead of raw context fields like github.event.issue.body. Sanitized context automatically removes @mentions, bot triggers, XML tags, malicious URIs, and control characters while preventing prompt injection attacks and DoS through size limits.
# RECOMMENDED: Use sanitized context textAnalyze issue #${{ github.event.issue.number }} in repository ${{ github.repository }}.The content: "${{ needs.activation.outputs.text }}"
# DISCOURAGED: Raw context (security risks)The issue body is: "${{ github.event.issue.body }}"Handle Edge Cases
Section titled “Handle Edge Cases”Anticipate unusual situations and error conditions. If a workflow fails, document the failure in an issue with error messages and context, tag it with ‘workflow-failure’, and exit gracefully without partial changes.
Content Organization
Section titled “Content Organization”Use numbered lists for multi-step processes, conditional statements for decision-making, and templates for consistent output:
# Code Review Process1. Check CI checks are passing and PR has appropriate title/description2. Scan for code quality issues and verify error handling/logging3. Create constructive comments and summarize assessment
# Issue Triage LogicIf error messages/stack traces: label 'bug', check for similar issues, request info if neededIf feature request: label 'enhancement', assess scope and complexityOtherwise: label 'question'/'discussion', provide resources
# Status Report Template## Summary: [week's activities]## Key Metrics: PRs merged, issues resolved, new contributors## Highlights: [achievements, decisions]## Next Week: [planned priorities]Common Pitfalls
Section titled “Common Pitfalls”Avoid over-complexity (keep instructions focused), assuming knowledge (explain project conventions), inconsistent formatting, missing error handling, and vague success criteria. Before deploying, read instructions aloud to check clarity, review examples for accuracy, and consider edge cases.
Templating
Section titled “Templating”Agentic markdown supports GitHub Actions expression substitutions and conditional templating for content. See Templating and Substitutions for details.
Related Documentation
Section titled “Related Documentation”- Workflow Structure - Overall workflow file organization
- Frontmatter - YAML configuration options
- Security Notes - Comprehensive security guidance