-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
325 additions
and
1,317 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ orbs: | |
aws-s3: circleci/[email protected] | ||
node: circleci/[email protected] | ||
sam: circleci/[email protected] | ||
aws-cli: circleci/[email protected] # perform openid connect | ||
aws-cli: circleci/[email protected] # perform openid connect | ||
jobs: | ||
build: | ||
docker: | ||
|
@@ -20,7 +20,7 @@ jobs: | |
- aws-cli/setup: | ||
profile-name: WEB IDENTITY PROFILE | ||
role-arn: $AWS_ROLE_ARN | ||
role-session-name: "CircleCI-${CIRCLE_WORKFLOW_ID}-${CIRCLE_JOB}" | ||
role-session-name: "CircleCI-${CIRCLE_WORKFLOW_ID}-${CIRCLE_JOB}" | ||
- checkout | ||
- node/install: | ||
install-yarn: false | ||
|
@@ -32,9 +32,6 @@ jobs: | |
- create_zip_upload_to_s3: | ||
lambdaFolder: "edge-lambda-for-s3/deployment" | ||
s3BucketFolder: "edgeLambdaForS3404s" | ||
- create_zip_upload_to_s3: | ||
lambdaFolder: "upsertGitHubTag/deployment" | ||
s3BucketFolder: "upsertGitHubTag" | ||
- create_zip_upload_to_s3: | ||
lambdaFolder: "webhook-testing/deployment" | ||
s3BucketFolder: "webhookTesting" | ||
|
@@ -62,7 +59,7 @@ jobs: | |
- aws-cli/setup: | ||
profile-name: WEB IDENTITY PROFILE | ||
role-arn: $AWS_ROLE_ARN | ||
role-session-name: "CircleCI-${CIRCLE_WORKFLOW_ID}-${CIRCLE_JOB}" | ||
role-session-name: "CircleCI-${CIRCLE_WORKFLOW_ID}-${CIRCLE_JOB}" | ||
- checkout | ||
- run: | ||
name: Validate index.js | ||
|
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,12 @@ | ||
**Description** | ||
A description of the PR, should include a decent explanation as to why this change was needed and a decent explanation as to what this change does | ||
|
||
**Issue** | ||
A link to a github issue or SEAB- ticket (using that as a prefix) | ||
|
||
**Security** | ||
If there are any concerns that require extra attention from the security team, highlight them here. | ||
|
||
Please make sure that you've checked the following before submitting your pull request. Thanks! | ||
|
||
- [ ] Ensure that the PR targets the correct branch. Check the milestone or fix version of the ticket. |
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,39 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ "develop", "master", "hotfix/*", "release/*", "feature/**" ] | ||
pull_request: | ||
branches: [ "develop", "master", "hotfix/*", "release/*" ] | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ javascript ] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
queries: +security-and-quality | ||
|
||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 | ||
with: | ||
category: "/language:${{ matrix.language }}" |
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
Oops, something went wrong.