Ability to see logs of an exited enclave that was ran in debug mode. #275
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: Notify owners about new event | |
on: | |
pull_request_target: | |
types: [opened, reopened] | |
issues: | |
types: [opened, reopened] | |
jobs: | |
build: | |
if: github.repository == 'aws/aws-nitro-enclaves-cli' | |
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 -X POST \ | |
-H "Content-Type: application/json" \ | |
-d '{"type":"${{ env.EVENT_TYPE }}","url":"${{ env.EVENT_URL }}"}' \ | |
"${{ secrets.EVENT_WEBHOOK_URL }}" |