[Bug]: Search not working as expected. #1708
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: Close feature requests with automated message | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
needs-votes: | |
if: ${{ github.event.label.name == 'feature' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-ecosystem/action-add-labels@v1 | |
with: | |
labels: needs votes | |
- name: Add reactions | |
uses: aidan-mundy/[email protected] | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
reactions: '+1' | |
- name: Create comment | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
:sparkles: Thanks for sharing your idea! :sparkles: | |
This repository uses lodash style issue management for enhancements. That means enhancement issues are automatically closed. This doesn’t mean we don’t accept feature requests, though! We will consider implementing ones that receive many upvotes, and we welcome contributions for any feature requests marked as needing votes (just post a comment first so we can help you make a successful contribution). | |
The enhancement backlog can be found here: https://github.com/actualbudget/actual/issues?q=label%3A%22needs+votes%22+sort%3Areactions-%2B1-desc+ | |
Don’t forget to upvote the top comment with 👍! | |
<!-- feature-auto-close-comment --> | |
- name: Close Issue | |
run: gh issue close "https://github.com/actualbudget/actual/issues/${{ github.event.issue.number }}" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |