[QUESTION] How to upgrade vom 2.x.x to 3.x.x? #506
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: ⭐ Hello non-Stargazers | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
check-user: | |
if: > | |
${{ | |
! contains( github.event.issue.labels.*.name, '📌 Keep Open') && | |
! contains( github.event.issue.labels.*.name, '🌈 Feedback') && | |
! contains( github.event.issue.labels.*.name, '💯 Showcase') && | |
github.event.comment.author_association != 'CONTRIBUTOR' | |
}} | |
runs-on: ubuntu-latest | |
name: Add comment to issues opened by non-stargazers | |
steps: | |
- name: comment | |
uses: qxip/please-star-light@v4 | |
with: | |
token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} | |
autoclose: false | |
message: "If you're enjoying Dashy, consider dropping us a ⭐<br>_<sub>🤖 I'm a bot, and this message was automated</sub>_" |