screen capture is not working #38
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 assignment | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
auto-assign: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Auto-assign issue' | |
uses: pozil/[email protected] | |
with: | |
assignees: gioxx | |
numOfAssignee: 1 | |
allowSelfAssign: true | |
- name: 'Comment on issue' | |
uses: actions/[email protected] | |
with: | |
script: | | |
const issueNumber = context.issue.number; | |
const message = "🇮🇹 Grazie per aver aperto la segnalazione. Ti informo, però, che il progetto è in fase di chiusura. Vedi https://github.com/gioxx/MarvellousSuspender/discussions/196.\n\n" + | |
"🇬🇧 Thank you for opening the issue. Please be advised, however, that the project will soon be closed due to Chrome V3 manifest and new policies. Please take a look here: https://github.com/gioxx/MarvellousSuspender/discussions/196."; | |
await github.rest.issues.createComment({ | |
...context.repo, | |
issue_number: issueNumber, | |
body: message | |
}); |