Skip to content

Strip maister: prefix from copilot skill names instead of replacing w… #11

Strip maister: prefix from copilot skill names instead of replacing w…

Strip maister: prefix from copilot skill names instead of replacing w… #11

Workflow file for this run

name: Build Copilot CLI Variant
on:
push:
branches: [master, v2]
paths: ['plugins/maister/**', 'platforms/**']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Copilot CLI variant
run: make build
- name: Validate build
run: make validate
- name: Commit if changed
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add plugins/maister-copilot/
git diff --cached --quiet || git commit -m "Rebuild Copilot CLI variant"
git push