Skip to content

build(deps): bump the minor-and-patch group across 1 directory with 35 updates #3

build(deps): bump the minor-and-patch group across 1 directory with 35 updates

build(deps): bump the minor-and-patch group across 1 directory with 35 updates #3

Workflow file for this run

name: Star ask on PR merge
on:
pull_request_target:
types: [closed]
permissions:
pull-requests: write
jobs:
star-ask:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v9
with:
script: |
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: `🎉 Merged! Thanks for contributing to CodeStride.\n\nIf the project has been useful to you, a ⭐ [star on the repo](https://github.com/${context.repo.owner}/${context.repo.repo}) is the easiest way to support it — it helps CodeStride get discovered by more developers.\n\nKeep an eye on [open issues](https://github.com/${context.repo.owner}/${context.repo.repo}/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22) for your next contribution!`
});