Skip to content

Commit

Permalink
slack
Browse files Browse the repository at this point in the history
Signed-off-by: leecalcote <[email protected]>
  • Loading branch information
leecalcote committed Jul 4, 2020
1 parent 688782e commit bab4a89
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/slack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Slack Notify on Star
on: watch
jobs:
star-notify:
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/meshery-istio' -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\":\"Someone just starred Meshery Adapter for Istio! (https://github.com/layer5io/meshery-istio/stargazers) Total ⭐️: ${{env.STARS}}\"}'

0 comments on commit bab4a89

Please sign in to comment.