Skip to content

Sign in With GitHUB is not working #31

Sign in With GitHUB is not working

Sign in With GitHUB is not working #31

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."
});