Skip to content

Commit

Permalink
Update slack.yml
Browse files Browse the repository at this point in the history
Signed-off-by: fitzergerald <[email protected]>
  • Loading branch information
fitzergerald authored Sep 28, 2024
1 parent d2377b2 commit 88b7049
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/slack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ jobs:
name: Notify Slack on star
runs-on: ubuntu-latest
steps:
- name: Get current star count
run: |
echo ::set-env name=STARS::$(curl --silent 'https://api.github.com/repos/layer5io/istio-service-mesh-workshop' -H 'Accept: application/vnd.github.preview' | jq '.watchers_count')
- 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 Istio Service Mesh Workshop! (https://github.com/layer5io/istio-service-mesh-workshop/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
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}}\"}'

0 comments on commit 88b7049

Please sign in to comment.