CVE-2023-2976 (High) detected in guava-30.1.1-jre.jar #161
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 Reminder | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
issue_comment: | |
if: | | |
(github.repository == 'AlexRogalskiy/roadmap') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Comment on issue | |
uses: actions/[email protected] | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
var url = 'https://github.com/AlexRogalskiy/roadmap/blob/master/.github/TROUBLESHOOTING.md' | |
var msg = `Thank you for opening an issue. If this issue is related to a bug, please follow the steps and provide the information outlined in the [Troubleshooting Guide](${url}). Failure to follow these instructions may result in automatic closing of this issue.` | |
github.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: msg | |
}) |