Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/sync-skills.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
# Use a PAT so pushed commits trigger downstream workflows.
# GITHUB_TOKEN pushes do not trigger workflow_run / push events.
# See: https://docs.github.com/en/actions/concepts/security/github_token#when-github_token-triggers-workflow-runs
token: ${{ secrets.SYNC_SKILLS_PAT || secrets.GITHUB_TOKEN }}

- name: Setup Node.js
uses: actions/setup-node@v5
Expand All @@ -31,6 +36,7 @@ jobs:
id: cpr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.SYNC_SKILLS_PAT || secrets.GITHUB_TOKEN }}
commit-message: 'sync skills from docs.stripe.com/.well-known/skills'
title: '[automated] sync skills from docs.stripe.com'
body: |
Expand Down
Loading