Skip to content

types: Update nvm-id-ns fields based on NVM Command Set Spec 1.1 #2

types: Update nvm-id-ns fields based on NVM Command Set Spec 1.1

types: Update nvm-id-ns fields based on NVM Command Set Spec 1.1 #2

Workflow file for this run

---
name: Comment on Merged PR
on:
pull_request:
types:
- closed
jobs:
comment-on-merge:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Comment on merged PR
uses: actions/github-script@v7
with:
script: |
const prNumber = context.payload.pull_request.number;
const comment = 'Thanks for your contribution!';
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
body: comment,
});