Allow signing EIFs with KMS while building #261
Workflow file for this run
This file contains hidden or 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" }} | ||
|
Check failure on line 12 in .github/workflows/event.yml
|
||
| 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 }} | ||