Bug Report: Error Installing Duplicate Finder App (v1.5.0) on Nextcloud Snapd 30. (Specified key was too long) #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Issue Closed Comment | |
permissions: | |
issues: write | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
const message = [ | |
'Thank you for your input and suggestions! 🙌', | |
'', | |
'The issue has been resolved/implemented in the latest updates. 🎉 If you have any further feedback or ideas, feel free to open a new issue or join the discussion on GitHub.', | |
'', | |
'Your support helps us make Duplicate Finder even better—thank you for being part of our journey! 🚀', | |
'', | |
'If you haven\'t already, don\'t forget to ⭐ star the project on GitHub. Your support means the world to us and keeps the project thriving!' | |
].join('\n'); | |
await github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: message | |
}); |