Skip to content

feat: ecmascript extension patterns for svelte.config file #246

feat: ecmascript extension patterns for svelte.config file

feat: ecmascript extension patterns for svelte.config file #246

Workflow file for this run

name: PR closed
on:
pull_request_target:
types:
- closed
permissions:
contents: read
jobs:
thank_you:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
permissions:
pull-requests: write
steps:
- name: Post Thank You Comment 🙏
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `## Merge Successful
Thanks for your contribution! 🎉
The changes will be part of the upcoming update on the Marketplace.`
})