fix: correct voting count during disconnection #6
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: first-interaction | |
on: | |
workflow_dispatch: {} | |
issues: | |
types: [opened] | |
pull_request: | |
branches: | |
- main | |
- develop | |
types: [opened] | |
jobs: | |
check_for_first_interaction: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/first-interaction@main | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: | | |
Hello! Thank you for filing an issue. | |
Please include relevant logs or detailed description for faster resolutions. | |
We really appreciate your contribution! | |
pr-message: | | |
Hello! Thank you for your contribution. | |
If you are fixing a bug, please reference the issue number in the description. | |
If you are implementing a feature request, please check with the maintainers that the feature will be accepted first. | |
We really appreciate your contribution! |