[FEATURE] Count how many times a specified character or regular is matched in the response #65
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
name: Issues Webhook | |
on: | |
issues: | |
types: [opened, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Push to webhook | |
run: | | |
echo $AUTHOR $TITLE $LINK | |
curl "$WEBHOOK" -X POST -H "Authorization: $AUTH_TOKEN" -d "$AUTHOR"$'\n'"$TITLE"$'\n'"$LINK" | |
env: | |
AUTHOR: ${{ github.event.issue.user.login }} | |
TITLE: ${{ github.event.issue.title }} | |
LINK: ${{ github.event.issue.html_url }} | |
WEBHOOK: ${{ secrets.WEBHOOK_URL }} | |
AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }} | |