diff --git a/.github/workflows/newcomers-alert.yml b/.github/workflows/newcomers-alert.yml new file mode 100644 index 0000000..4d131b7 --- /dev/null +++ b/.github/workflows/newcomers-alert.yml @@ -0,0 +1,16 @@ + name: Newcomers Alert +on: + issues: + types: [labeled] +jobs: + good-first-issue-notify: + if: github.event.label.name == 'good first issue' || github.event.label.name == 'first-timers-only' + name: Notify Slack for new good-first-issue + runs-on: ubuntu-latest + steps: + - name: Notify slack + env: + SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} + uses: pullreminders/slack-action@master + with: + args: '{\"channel\":\"C019426UBNY\",\"text\":\"A good first issue label was just added to ${{github.event.issue.html_url}}.\"}' \ No newline at end of file diff --git a/.github/workflows/slack.yml b/.github/workflows/slack.yml index d48f147..c1d90c4 100644 --- a/.github/workflows/slack.yml +++ b/.github/workflows/slack.yml @@ -7,10 +7,10 @@ jobs: steps: - name: Get current star count run: | - echo ::set-env name=STARS::$(curl --silent 'https://api.github.com/repos/meshery/meshery-nsm' -H 'Accept: application/vnd.github.preview' | jq '.watchers_count') + echo "STARS=$(curl --silent 'https://api.github.com/repos/${{github.repository}}' -H 'Accept: application/vnd.github.preview' | jq '.stargazers_count')" >> $GITHUB_ENV - name: Notify slack env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} uses: pullreminders/slack-action@master with: - args: '{\"channel\":\"CSK7N9TGX\",\"text\":\"${{ github.actor }} just starred Meshery Adapter for Network Service Mesh! (https://github.com/meshery/meshery-nsm/stargazers) Total ⭐️: ${{env.STARS}}\"}' + args: '{\"channel\":\"CSK7N9TGX\",\"text\":\"${{ github.actor }} just starred ${{github.repository}}! (https://github.com/${{github.repository}}/stargazers) Total ⭐️: ${{env.STARS}}\"}'