-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #287 from ASFHyP3/develop
Release: v0.7.5
- Loading branch information
Showing
8 changed files
with
107 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Changelog updated? | ||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- labeled | ||
- unlabeled | ||
- synchronize | ||
branches: | ||
- master | ||
- develop | ||
jobs: | ||
changelog-udated: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Changelog check | ||
uses: Zomzog/[email protected] | ||
with: | ||
fileName: CHANGELOG.md | ||
noChangelogLabel: bumpless | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ Outputs: | |
Url: | ||
Value: !Sub "https://${CustomDomainName}/ui" | ||
|
||
ApiId: | ||
Value: !Ref Api | ||
|
||
Resources: | ||
|
||
Api: | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
AWSTemplateFormatVersion: 2010-09-09 | ||
|
||
Parameters: | ||
StepFunctionArn: | ||
Type: String | ||
|
||
ApiId: | ||
Type: String | ||
|
||
Resources: | ||
|
||
AlarmTopic: | ||
Type: AWS::SNS::Topic | ||
|
||
StepFunctionAlarm: | ||
Type: AWS::CloudWatch::Alarm | ||
Properties: | ||
AlarmActions: | ||
- !Ref AlarmTopic | ||
AlarmDescription: Hyp3 processing failures | ||
ComparisonOperator: GreaterThanThreshold | ||
Period: 60 | ||
EvaluationPeriods: 1 | ||
Threshold: 0 | ||
Dimensions: | ||
- Name: StateMachineArn | ||
Value: !Ref StepFunctionArn | ||
MetricName: ExecutionsFailed | ||
Namespace: AWS/States | ||
Statistic: Sum | ||
Unit: Count | ||
TreatMissingData: notBreaching | ||
|
||
ApiAlarm: | ||
Type: AWS::CloudWatch::Alarm | ||
Properties: | ||
AlarmActions: | ||
- !Ref AlarmTopic | ||
AlarmDescription: Hyp3 api HTTP 500 errors | ||
ComparisonOperator: GreaterThanThreshold | ||
Period: 60 | ||
EvaluationPeriods: 1 | ||
Threshold: 0 | ||
Dimensions: | ||
- Name: ApiId | ||
Value: !Ref ApiId | ||
MetricName: 5xx | ||
Namespace: AWS/ApiGateway | ||
Statistic: Sum | ||
TreatMissingData: notBreaching |
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
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