Skip to content

feat: pivot to best practices collection (v0.2) #58

feat: pivot to best practices collection (v0.2)

feat: pivot to best practices collection (v0.2) #58

Workflow file for this run

# Agent Ready - Repository Readiness Check
# Runs on PRs and pushes to check repo setup for AI coding agents
name: Agent Ready
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check:
name: Check Repository
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Run Agent Ready Check
id: check
uses: ./
with:
path: '.'
- name: Print Results
env:
PASSED: ${{ steps.check.outputs.passed }}
run: |
echo "Passed: $PASSED"