Skip to content

Initial setup of the "new starter pack" that uses the extension #6

Initial setup of the "new starter pack" that uses the extension

Initial setup of the "new starter pack" that uses the extension #6

name: Keep action in sync
on:
pull_request:
paths:
- .github/workflows/automatic-doc-checks.yml
- sp-files/.github/workflows/automatic-doc-checks.yml
permissions:
issues: 'write'
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Make sure to keep .github/workflows/automatic-doc-checks.yml and sp-files/.github/workflows/automatic-doc-checks.yml in sync!'
})