Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @andybaran
9 changes: 9 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## Checklist

- [ ] Linked issue included in the PR body (for example, `Closes #N`)
- [ ] Implementation plan was reviewed and approved before code changes
- [ ] Code review has passed
- [ ] Tests and CI are green
- [ ] PR title uses Conventional Commits format
- [ ] No secrets or credentials are committed
- [ ] Squash-merge is intended
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
pull_request:
push:
branches:
- main

jobs:
validate:
name: Validate skill
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Install ShellCheck
run: sudo apt-get update && sudo apt-get install -y shellcheck

- name: Run ShellCheck
run: shellcheck skills/issue-driven-github-flow/scripts/*.sh tests/*.sh

- name: Run test suite
run: bash tests/run.sh

- name: Validate evals JSON
run: python3 -c "import json,sys; json.load(open('skills/issue-driven-github-flow/evals/evals.json'))"
Loading