From ec4481149b6475626350165cfe1d1cf6ee50245a Mon Sep 17 00:00:00 2001 From: Ranit Mukherjee <49058364+RanitMukherjee@users.noreply.github.com> Date: Wed, 10 Sep 2025 20:49:11 +0530 Subject: [PATCH] Update slack.yml Signed-off-by: Ranit Mukherjee <49058364+RanitMukherjee@users.noreply.github.com> --- .github/workflows/slack.yml | 43 +++++++++++++++++++++++-------------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/.github/workflows/slack.yml b/.github/workflows/slack.yml index 30a4b33..6bf204d 100644 --- a/.github/workflows/slack.yml +++ b/.github/workflows/slack.yml @@ -1,30 +1,41 @@ name: Slack Notify -on: + +on: watch: types: [started] + issues: + types: [labeled] + jobs: star-notify: if: github.event_name == 'watch' name: Notify Slack on star runs-on: ubuntu-latest steps: - - name: Get current star count - run: | - 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 ${{github.repository}}! (https://github.com/${{github.repository}}/stargazers) Total ⭐️: ${{env.STARS}}\"}' + - name: Get current star count + run: | + 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 + uses: slackapi/slack-github-action@v2.1.1 + with: + method: chat.postMessage + token: ${{ secrets.SLACK_BOT_TOKEN }} + payload: | + channel: CSK7N9TGX + type: "mrkdwn" + text: " just starred bringing the total ⭐️ count up to: ${{ env.STARS }}" + good-first-issue-notify: - if: github.event_name == 'issues' && github.event.label.name == 'good first issue' || github.event.label.name == 'first-timers-only' + if: github.event_name == 'issues' && (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 + - name: Notify Slack + uses: slackapi/slack-github-action@v2.1.1 with: - args: '{\"channel\":\"C019426UBNY\",\"text\":\"A good first issue label was just added to ${{github.event.issue.html_url}}.\"}' + method: chat.postMessage + token: ${{ secrets.SLACK_BOT_TOKEN }} + payload: | + channel: C019426UBNY + text: ":new: Good first issue up for grabs: <${{ github.event.issue.title }}|${{ github.event.issue.html_url }}>"