deinit is not triggered on API - tiggers OOM in IOS (V2+V3) #9
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: Comment on New Issues | |
on: | |
issues: | |
types: [opened] | |
permissions: | |
issues: write | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment on the issue | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const issueComment = `Thank you for opening this issue! | |
I will look into it as soon as possible. In the meantime, please review these important project updates: | |
- [Version 3.0 RFC](https://github.com/albemala/native_video_player/issues/33) - Information about upcoming changes and new features | |
- [Community Funding Model](https://github.com/albemala/native_video_player/issues/34) - Learn about project development and support | |
Your feedback and contributions are greatly appreciated!`; | |
await github.rest.issues.createComment({ | |
...context.repo, | |
issue_number: context.issue.number, | |
body: issueComment | |
}); |