mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge 3efa591c17 into 3b3a59fd62
This commit is contained in:
commit
4e7ae0f55b
1 changed files with 20 additions and 0 deletions
20
.github/workflows/indicate_interest_label.yml
vendored
Normal file
20
.github/workflows/indicate_interest_label.yml
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
name: Indicate interest label
|
||||||
|
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [labeled]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
comment-on-indicate-interest-label:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: github.event.label.name == 'Indicate interest required'
|
||||||
|
steps:
|
||||||
|
- name: Comment after applying indicate interest label
|
||||||
|
uses: peter-evans/create-or-update-comment@v3
|
||||||
|
with:
|
||||||
|
issue-number: ${{ github.event.issue.number }}
|
||||||
|
body: |
|
||||||
|
Thumbs up on the issue description if you would also like this feature request
|
||||||
Loading…
Reference in a new issue