diff --git a/.github/workflows/slack.yml b/.github/workflows/slack.yml index 5df3642..57efb02 100644 --- a/.github/workflows/slack.yml +++ b/.github/workflows/slack.yml @@ -1,39 +1,36 @@ name: Slack Notify + on: watch: - types: - - started + types: [started] + issues: + types: [labeled] + jobs: star-notify: if: github.event_name == 'watch' name: Notify Slack on star - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - 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 + 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}}\"}' + 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' + 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 + runs-on: ubuntu-latest steps: - - name: Notify slack + - 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}}.\"}' \ No newline at end of file + args: '{\"channel\":\"C019426UBNY\",\"type\":\"section\",\"text\":\":new: Good first issue up for grabs: ${{ github.event.issue.title }} - ${{ github.event.issue.html_url }} \"}' +