Skip to content

Add Chapter: Set in Python #26

Add Chapter: Set in Python

Add Chapter: Set in Python #26

name: Auto Comment on Issue Opened
on:
issues:
types: [opened]
permissions:
issues: write
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Comment on new 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: "🚀 Thanks for opening this issue! The team will review it shortly."
});