[#380] Added navigation name to support aria-label for <nav> element #1104
Workflow file for this run
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
## | |
# GitHub Actions workflow to dispatch a PR webhook for a Pull Request. | |
# | |
# This is used to allow more granular control over the operations that trigger | |
# webhooks. | |
# | |
# Note that Lagoon's webhook should be disabled in GitHub. | |
name: Dispatch a webhook to Lagoon when Pull Request is closed | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
dispatch_webhook_lagoon_remove_environment_pr_closed: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Remove environment after a PR is closed | |
run: | | |
cat $GITHUB_EVENT_PATH | curl \ | |
-X POST \ | |
--header "Content-Type: application/json" \ | |
--header "X-GitHub-Delivery: ${RUNNER_TRACKING_ID:7}" \ | |
--header "X-GitHub-Event: pull_request" \ | |
--data-binary @- \ | |
"${LAGOON_WEBHOOK_ENDPOINT-https://hooks.lagoon.amazeeio.cloud/}" |