Skip to content

Commit 7d38802

Browse files
authored
Merge pull request #352 from umihico/fix/update-grep-pattern
Fix: Update grep pattern to match new example.com content
2 parents 1598754 + 017b952 commit 7d38802

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/auto-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
name: scraping-result
8484
path: /tmp/scraping-result.txt
8585
- name: Test
86-
run: cat /tmp/scraping-result.txt | grep -q "This domain is for use in illustrative examples in documents"
86+
run: cat /tmp/scraping-result.txt | grep -q "This domain is for use in documentation examples"
8787
- name: Update README
8888
run: |
8989
CHROME_VERSION=${{ steps.chrome-versions.outputs.CHROME_VERSION }}

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ jobs:
3030
- name: Invoke
3131
run: sls invoke --function demo |& tee /tmp/scraping-result.txt
3232
- name: Check
33-
run: cat /tmp/scraping-result.txt | grep -q "This domain is for use in illustrative examples in documents"
33+
run: cat /tmp/scraping-result.txt | grep -q "This domain is for use in documentation examples"
3434
- name: Clean up (ECR costs)
3535
run: sls remove

.github/workflows/demo-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
sls create --template-url "https://github.com/umihico/docker-selenium-lambda/tree/main" --path docker-selenium-lambda && cd $_
3232
sls deploy
3333
sls invoke --function demo |& tee /tmp/scraping-result.txt
34-
cat /tmp/scraping-result.txt | grep -q "This domain is for use in illustrative examples in documents"
34+
cat /tmp/scraping-result.txt | grep -q "This domain is for use in documentation examples"

0 commit comments

Comments
 (0)