Skip to content

Update

Update #96

Workflow file for this run

name: Open URL on Successful Merge
on:
pull_request:
types:
- closed
jobs:
open-url:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Open URL on successful merge
if: github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
run: |
curl -L -f -S -s https://mdwiki.toolforge.org/update_md.php > curl_output.txt || echo "Curl request failed with status code $?"