Skip to content

Commit b8cddb8

Browse files
Merge pull request #64 from leandrosimoes/develop
chore(): add help wanted tag workflow
2 parents c55d844 + 05a0504 commit b8cddb8

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/helpwanted.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Help Wanted
2+
3+
on:
4+
issues:
5+
types: [labeled]
6+
7+
jobs:
8+
create-comment:
9+
runs-on: ubuntu-latest
10+
if: github.event.label.name == 'help wanted'
11+
steps:
12+
- name: Create comment
13+
uses: actions-cool/issues-helper@v3
14+
with:
15+
actions: 'create-comment'
16+
token: ${{ secrets.GITHUB_TOKEN }}
17+
issue-number: ${{ github.event.issue.number }}
18+
body: |
19+
Hello @${{ github.event.issue.user.login }}!
20+
21+
This issue was marked with the "help wanted" tag, and here you can find what that means:
22+
23+
Since Android OS is present on lots of different devices, most of the issues cannot be tested on real devices, so we ask you to dig deeper as you can into the problem providing constant updates here on the issue with your progress.
24+
25+
If there is no activity on this issue for 60 days or more, it will be tagged as stale and after that, it will be automatically deleted if there are no more updates provided for 7 days.
26+
27+
Hope you understand that and keep helping the community!
28+
29+
Thanks!

0 commit comments

Comments
 (0)