Skip to content

Ubuntu install method no longer working #138

Ubuntu install method no longer working

Ubuntu install method no longer working #138

Workflow file for this run

name: Notify owners about new event
on:
pull_request_target:
types: [opened, reopened]
issues:
types: [opened, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: if_pr
if: github.event.pull_request
run: |
echo "EVENT_TYPE=PR" >> $GITHUB_ENV
echo "EVENT_URL=${{ github.event.pull_request.html_url }}" >> $GITHUB_ENV
- name: if_issue
if: github.event.issue
run: |
echo "EVENT_TYPE=issue" >> $GITHUB_ENV
echo "EVENT_URL=${{ github.event.issue.html_url }}" >> $GITHUB_ENV
- name: notify
run: |
curl -d '{ "type": "${{ env.EVENT_TYPE }}", "url": "${{ env.EVENT_URL }}" }' ${{ secrets.EVENT_WEBHOOK_URL }}