Skip to content

feat(branding): add animated splash screen and update application bra… #277

feat(branding): add animated splash screen and update application bra…

feat(branding): add animated splash screen and update application bra… #277

name: Auto Reply to Issues
on:
issues:
types: [opened]
permissions:
issues: write
jobs:
reply:
runs-on: ubuntu-latest
steps:
- name: Comment on new issue
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.issue.number,
body: `Thanks for opening this issue!
We appreciate your contribution to this project.

Check failure on line 25 in .github/workflows/issue-auto-reply.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/issue-auto-reply.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
Our maintainers will review the issue soon. Please ensure you have provided:
- Clear description
- Steps to reproduce (if applicable)
- Expected behavior
- Screenshots/logs (if applicable)
Thank you for contributing!`
})