install v on ubuntu 22.04 , but make command run failed #15
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: Add voting info to new issue | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
add-voting-info: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Append voting info to issue body | |
uses: julien-deramond/update-issue-body@v1 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
> [!IMPORTANT] | |
> You can vote for this issue using the 👍 reaction. More votes increase the issue's priority | |
> for developers. | |
> | |
> Take into account that only the 👍 reaction counts as a vote. | |
> Only reactions to the issue itself will be counted as votes, not comments. | |
edit-mode: append | |
append-separator: newline |