fix: force git to track SKILL.md case change #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Vibe Publisher - Memory to Blog | |
| on: | |
| push: | |
| paths: | |
| - '.memory/**' | |
| workflow_dispatch: | |
| jobs: | |
| generate-blog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r .github/scripts/vibe_requirements.txt | |
| - name: Generate blog post | |
| env: | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| run: | | |
| python .github/scripts/blog_gen.py | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v6 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| commit-message: 'feat(blog): generate post from memory session' | |
| title: '📝 New Blog Post from Session Memory' | |
| body: | | |
| ## 🎨 Letter to Blog Pipeline | |
| Auto-generated blog post from latest session memory. | |
| **Generated by:** Anthropic Claude API | |
| **Source:** `.memory/` folder | |
| **Output:** `drafts/` folder | |
| ### Next Steps | |
| - [ ] Review the generated content | |
| - [ ] Edit for style/branding if needed | |
| - [ ] Move to your blog publishing location | |
| - [ ] Merge when ready | |
| branch: blog-automation-${{ github.run_number }} | |
| delete-branch: true |