mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
25 lines
733 B
YAML
25 lines
733 B
YAML
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: |
|
|
> [!NOTE]
|
|
> You can use the 👍 reaction to increase the issue's priority for developers.
|
|
>
|
|
> Please note that only the 👍 reaction to the issue itself counts as a vote.
|
|
> Other reactions and those to comments will not be taken into account.
|
|
edit-mode: append
|
|
append-separator: newline
|