From 23f7465e9310723531dd5ba698382b69d321b4c7 Mon Sep 17 00:00:00 2001 From: Naman Verma <149177973+Namanv0509@users.noreply.github.com> Date: Sat, 19 Jul 2025 03:45:35 +0530 Subject: [PATCH 1/3] No blank issue template Signed-off-by: Naman Verma <149177973+Namanv0509@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/config.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..3ba13e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false From 2f489b9f6292789ae275c8add3a531ea0e93b138 Mon Sep 17 00:00:00 2001 From: Namanv0509 Date: Sat, 19 Jul 2025 04:06:27 +0530 Subject: [PATCH 2/3] slack.yml update good-first-issue notify Signed-off-by: Namanv0509 --- .github/workflows/slack.yml | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/.github/workflows/slack.yml b/.github/workflows/slack.yml index 30a4b33..57efb02 100644 --- a/.github/workflows/slack.yml +++ b/.github/workflows/slack.yml @@ -1,30 +1,36 @@ name: Slack Notify -on: + +on: watch: types: [started] + issues: + types: [labeled] + jobs: star-notify: if: github.event_name == 'watch' name: Notify Slack on star 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 - 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}}\"}' + - 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 }}\"}' + 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-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}}.\"}' + args: '{\"channel\":\"C019426UBNY\",\"type\":\"section\",\"text\":\":new: Good first issue up for grabs: ${{ github.event.issue.title }} - ${{ github.event.issue.html_url }} \"}' + From 35f9648feba4ed8010374813adab882a419c16b7 Mon Sep 17 00:00:00 2001 From: Namanv0509 Date: Sat, 19 Jul 2025 04:13:55 +0530 Subject: [PATCH 3/3] slack.yml update Signed-off-by: Namanv0509 --- .github/ISSUE_TEMPLATE/config.yml | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml deleted file mode 100644 index 3ba13e0..0000000 --- a/.github/ISSUE_TEMPLATE/config.yml +++ /dev/null @@ -1 +0,0 @@ -blank_issues_enabled: false