Skip to content

Make the vertical line on the blog posts page relative to table of content on right #726

Make the vertical line on the blog posts page relative to table of content on right

Make the vertical line on the blog posts page relative to table of content on right #726

name: Auto Comment on Issue Closed
on:
issues:
types: [closed]
permissions:
issues: write
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Comment on closed issue
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "✅ This issue has been closed. Thank you for your contribution!"
});