chore(deps): update oven-sh/setup-bun digest to b7a1c7c #843
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: π PR closed | |
| on: | |
| pull_request_target: | |
| types: | |
| - closed | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| thank-you: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.merged == true | |
| steps: | |
| - name: π Post Thank You Comment | |
| uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 | |
| 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.` | |
| }) |