-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: leecalcote <[email protected]>
- Loading branch information
1 parent
688782e
commit bab4a89
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
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
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}}\"}' |