Skip to content

chore(ci): update runner types and trigger #75

chore(ci): update runner types and trigger

chore(ci): update runner types and trigger #75

name: "comment on pr with checklist"
on:
pull_request:
types: [ opened ]
jobs:
checklist:
name: "add checklist as a comment on newly opened PRs"
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v5
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: '- [ ] I thought about the changelog.'
})