Sync Agent Skills #5
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: Sync Agent Skills | |
| on: | |
| schedule: | |
| - cron: '0 6 * * 1' # Weekly on Monday at 6am UTC | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Update submodule to latest | |
| run: | | |
| git submodule update --init --remote submodules/agent-skills | |
| - name: Copy skills from submodule | |
| run: | | |
| rsync -a --delete --exclude README.md \ | |
| submodules/agent-skills/skills/clickhouse-best-practices/ \ | |
| skills/clickhouse-best-practices/ | |
| - name: Check for changes | |
| id: diff | |
| run: | | |
| if git diff --quiet skills/clickhouse-best-practices/ submodules/; then | |
| echo "changed=false" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "changed=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Push changes directly | |
| if: steps.diff.outputs.changed == 'true' | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add skills/clickhouse-best-practices/ submodules/agent-skills | |
| git commit -m "sync: update skills from agent-skills" | |
| git push origin main |