-
-
Notifications
You must be signed in to change notification settings - Fork 758
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Modify/Add] Implement Typos Workflow
- Loading branch information
1 parent
7b51cda
commit 4fa8ce1
Showing
6 changed files
with
34 additions
and
8 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,20 @@ | ||
name: Check typos | ||
on: | ||
pull_request: | ||
push: | ||
jobs: | ||
run: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v2 | ||
- name: Get changed files | ||
id: changed-files | ||
uses: tj-actions/[email protected] | ||
- name: Check spelling of file.txt | ||
if: ${{ steps.changed-files.outputs.all_changed_files != '' }} | ||
uses: crate-ci/typos@master | ||
with: | ||
files: ${{ steps.changed-files.outputs.all_changed_files }} | ||
config: ./.typos.toml |
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,6 @@ | ||
# https://github.com/crate-ci/typos/blob/master/docs/reference.md | ||
|
||
[default.extend-words] | ||
# Don't correct the surname "Teh" | ||
Daa = 'Daa' | ||
CAF = 'CAF' |
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Security & Compliance | ||
|
||
- [Security & Compliance](#security--compliance) | ||
- [Security \& Compliance](#security--compliance) | ||
- [AWS Shared Responsibility Model](#aws-shared-responsibility-model) | ||
- [Example, for RDS](#example-for-rds) | ||
- [Example, for S3](#example-for-s3) | ||
|
@@ -290,10 +290,10 @@ | |
- Abusive & prohibited behaviors are: | ||
- Spam – receiving undesired emails from AWS-owned IP address, websites & forums spammed by AWS resources | ||
- Port scanning – sending packets to your ports to discover the unsecured ones | ||
- DoS or DDoS attacks – AWS-owned IP addresses attempting to overwhlem or crash your servers/softwares | ||
- DoS or DDoS attacks – AWS-owned IP addresses attempting to overwhelm or crash your servers/softwares | ||
- Intrusion attempts – logging in on your resources | ||
- Hosting objectionable or copyrighted content – distributing illegal or copyrighted content without consent | ||
- Distributing malware – AWS resources distributing softwares to harm computers or machines | ||
- Distributing malware – AWS resources distributing software to harm computers or machines | ||
- Contact the AWS Abuse team: AWS abuse form, or [email protected] | ||
|
||
## Root user privileges | ||
|