Skip to content

Commit

Permalink
Merge pull request #75 from msaini0r/cl/msaini0r/72
Browse files Browse the repository at this point in the history
Update Slack.yml and add newcomer-alert workflow.
  • Loading branch information
leecalcote committed Dec 31, 2021
2 parents 20ff112 + ac54d25 commit 3e04da1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/newcomers-alert.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Newcomers Alert
on:
issues:
types: [labeled]
jobs:
good-first-issue-notify:
if: 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
with:
args: '{\"channel\":\"C019426UBNY\",\"text\":\"A good first issue label was just added to ${{github.event.issue.html_url}}.\"}'
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/meshery/meshery-app-mesh' -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 Meshery Adapter for App Mesh! (https://github.com/meshery/meshery-app-mesh/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 3e04da1

Please sign in to comment.