CI/CD

Overview

Since AutoMD boards are just markdown files in git, they integrate naturally with CI/CD workflows.

GitHub Actions

Example: automatically move tasks when PRs are merged.

name: Update Board
on:
  pull_request:
    types: [closed]

jobs:
  update-board:
    if: github.event.pull_request.merged == true
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Move completed tasks
        run: |
          # Script to parse PR description and update board
          echo "Moving tasks to Done column..."

Webhook integration

AutoMD can trigger webhooks on board changes, enabling:

  • Slack notifications on task completion
  • Automated deployments when sprint boards are cleared
  • Status page updates from board metadata

Info

Detailed CI/CD integration guides and webhook configuration coming soon.