Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reopen #745 #1

Open
wants to merge 36 commits into
base: jlevy-slackinvite
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
42c5cd5
Update Slack invite links (#732)
jlevy Nov 29, 2019
4d428f7
refresh revenue metric to Q3 2019 (#733)
pgibson65 Nov 30, 2019
175138b
Reword how ACM domain validation works (#722)
QuinnyPig Dec 20, 2019
3fab08a
Reopen #745 (#746)
plygrnd May 15, 2020
3bc82bc
update zombie clause number (#750)
swyxio Jun 8, 2020
6875601
Update certification list (#748)
juaoose Jun 8, 2020
56831e7
Minor typo correction (#743)
rcoundon Jun 8, 2020
358a8b6
Update information on Lambda cold starts, add reference to provisione…
pgibson65 Jun 8, 2020
1f588d0
fix some typos and links (#752)
ptcodes Jul 28, 2020
617a4c2
Russian Translation (#1) (#744)
nickpoida Jul 28, 2020
16091ec
Testing GitHub actions migration (#760)
QuinnyPig Nov 3, 2020
a7fe5ff
I hate yaml
QuinnyPig Nov 3, 2020
6b5e00f
Fix broken links (#762)
QuinnyPig Nov 3, 2020
ab92dee
Update ElastiCache URLs (#759)
pmarques Nov 3, 2020
41b7793
Fixed link label (#765)
Hofls Dec 15, 2020
bd49af5
Fixed failing link
QuinnyPig Dec 29, 2020
b430614
adds lambda gotcha on public subnets+NAT gateway (#768)
acsrujan Dec 29, 2020
20d4075
Fixes slack URLs everywhere to Corey's alias (#767)
acsrujan Dec 29, 2020
55b4aaa
Feat: added link to go to top (#751)
itsjwala Dec 29, 2020
a9049ad
Minimum billable duration is now 1ms (#773)
pal Jan 25, 2021
da88efe
Fixed misnomer of Identity and Access Management. (#779)
noamsdahan Jun 24, 2021
49273ad
Fix typo on `kubectl` (#785)
snay2 Dec 29, 2021
241d1a4
docs: remove mention of ddb not supporting empty string (#795)
vladgolubev Jan 5, 2022
63bc6a2
add quicksight basics and two gotchas (#790)
zoellner Feb 17, 2022
42664ff
Removing Certified Alexa Skill Builder – Specialty and Certified Big …
edgarpf Feb 17, 2022
776858c
fix: Mike Roberts is this actual author (#783)
michaelbrewer Feb 17, 2022
32f8f3d
Update ECS links to hosted Kubernetes solutions (#786)
snay2 Feb 17, 2022
b27e28e
Switch broken link for Internet Archive copy (#781)
jciskey Feb 17, 2022
22c9ab1
Add information about obtaining elastic IP blocks (#778)
kyl191 Feb 17, 2022
98e64a2
Auto Scaling FAQ, invalid HTML anchor (#755)
GrayStrider Feb 17, 2022
80bd7fd
Fargate: Remove obsolete limitations (#777)
paulgalow Aug 14, 2022
a7b7088
Add cost savings tips for RDS and EC2 (#800)
minimice Aug 24, 2022
7a1588e
fix: Corrects spacing typo (#807)
darigovresearch Aug 24, 2022
6181401
Correct url to autoscaling faq (#805)
nitrocode Aug 24, 2022
215aac0
Add tagging limitation on shared resources (#803)
nitrocode Aug 24, 2022
cde0294
fix: small error (#770)
0xflotus Aug 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/linkchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Link-Checker

on: pull_request

jobs:
check:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby 2.7
uses: actions/setup-ruby@v1
with:
ruby-version: 2.7
- name: Check project links
run: |
gem install awesome_bot
awesome_bot README.md --allow-redirect --allow-dupe --allow 429 -w .amazonaws.com,news.ycombinator.com,swagger.io,www.amazon.com
Loading