新增翻译文章:AGENTS.md 在我们的 Agent 评估中优于 Skills (#1) #8
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: Trigger jekyll update | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| trigger: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger jekyll site workflow | |
| run: | | |
| curl -X POST \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| -H "Authorization: Bearer ${{ secrets.PRIVATE_TOKEN }}" \ | |
| https://api.github.com/repos/wwulfric/wwulfric.github.io/actions/workflows/jekyll-gh-pages.yml/dispatches \ | |
| -d '{"ref":"source"}' |