✨ [FEATURE] Ref source of every url #4
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: Help Wanted | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
create-comment: | |
runs-on: ubuntu-latest | |
if: github.event.label.name == 'help wanted' | |
steps: | |
- name: Create comment | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}! | |
This issue was marked with the "help wanted" tag, and here you can find what that means: | |
Tests were done and the error could not be found for many reasons, so we ask you to dig deeper as you can into the problem providing constant updates here on the issue with your progress. | |
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. | |
Hope you understand that and keep helping the community! | |
Thanks! |