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
33 changes: 33 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Deploy GitHub Pages

on:
push:
branches: [main]
paths: ['site/**']
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: site/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
├── .githooks/ Local git hooks: pre-push (lint+test), commit-msg (conventional commit format)
├── Formula/ Homebrew tap formula — auto-updated by release.yml on each release
├── site/ GitHub Pages static landing page (HTML + CSS) — deployed by pages.yml
├── go.mod Module declaration (sean_seannery/opsfile, Go 1.25+, no external deps)
├── AGENTS.md This file — source of truth for agentic context
├── CLAUDE.md Links to AGENTS.md (Claude does not natively support AGENTS.md)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# opsfile (aka `ops`)

> **Website:** [seanseannery.github.io/opsfile](https://seanseannery.github.io/opsfile)

## What does `ops` do?

It's a cli tool, essentially like `make` and `makefiles` but for sharing and executing live-operations / on-call commands for the repo. Simply create an `Opsfile` in your repo with common on-call commands your team uses and run it with `ops [env] <command>`.
Expand Down