generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #263 from Aayush987/slack_fix
Slack.yml updated
- Loading branch information
Showing
1 changed file
with
19 additions
and
5 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 |
---|---|---|
@@ -1,16 +1,30 @@ | ||
name: Slack Notify on Star | ||
on: watch | ||
name: Slack Notify | ||
on: | ||
watch: | ||
types: [started] | ||
jobs: | ||
star-notify: | ||
if: github.event_name == 'watch' | ||
name: Notify Slack on star | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Get current star count | ||
run: | | ||
echo ::set-env name=STARS::$(curl --silent 'https://api.github.com/repos/meshery/meshery-nginx-sm' -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 NGINX Service Mesh! (https://github.com/meshery/meshery-nginx-sm/stargazers) Total ⭐️: ${{env.STARS}}\"}' | ||
args: '{\"channel\":\"CSK7N9TGX\",\"text\":\"${{ github.actor }} just starred ${{github.repository}}! (https://github.com/${{github.repository}}/stargazers) Total ⭐️: ${{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' | ||
name: Notify Slack for new good-first-issue | ||
runs-on: ubuntu-22.04 | ||
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}}.\"}' |