Skip to content

feat: highlight easy param miner requests #106

feat: highlight easy param miner requests

feat: highlight easy param miner requests #106

Workflow file for this run

name: Pull Request Webhook
on:
pull_request_target:
types: [opened, reopened]
jobs:
webhook:
runs-on: ubuntu-latest
steps:
- name: Push to Webhook
run: |
echo $AUTHOR $TITLE $LINK
curl "$WEBHOOK" -X POST -H "Content-Type: application/json" -H "Authorization: $AUTH_TOKEN" -d "$AUTHOR"$'\n'"$TITLE"$'\n'"$LINK"
env:
AUTHOR: ${{ github.event.pull_request.user.login }}
TITLE: ${{ github.event.pull_request.title }}
LINK: ${{ github.event.pull_request.html_url }}
WEBHOOK: ${{ secrets.WEBHOOK_URL }}
AUTH_TOKEN: ${{ secrets.AUTH_TOKEN }}