Skip to content

feat: Pseudo-wildcard support for folder icons #72

feat: Pseudo-wildcard support for folder icons

feat: Pseudo-wildcard support for folder icons #72

Workflow file for this run

name: PR closed
on:
pull_request_target:
types:
- closed
jobs:
thank_you:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: Post Thank You Comment 🙏
uses: actions/github-script@v7
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.`
})