Skip to content

Download image as png or jpeg format on clicking download btn #82

Download image as png or jpeg format on clicking download btn

Download image as png or jpeg format on clicking download btn #82

Workflow file for this run

name: Comment on New Issues
on:
issues:
types:
- opened
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Comment on Issue
if: github.event.issue.user.login != github.event.repository.owner.login
uses: actions/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const issueComment = `
πŸŽ‰ Thanks for raising an issue πŸš€
The maintainer will be on the case shortly to review your issue. If everything checks out, they'll assign the issue to you. πŸ“‹βœ…
Your support means the world to us! 🌟 Please consider giving our repository a star ⭐ to show your appreciation πŸš€
Feel free to reach out if you have any questions or need further assistance. πŸ™Œ
`;
github.issues.createComment({ issue_number: github.context.issue.number, owner: github.context.repo.owner, repo: github.context.repo.repo, body: issueComment });