Skip to content

[리드미 자동 업데이트] v.1.0.0 #30

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

Merged
merged 32 commits into from
Apr 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
e216dae
패키지 추가 및 gitignore 수정
cruelladevil Apr 15, 2022
a9255ac
title과 link를 크롤링하는 fetch.js 빌드
cruelladevil Apr 15, 2022
f5f42e4
README.md의 문제 table data를 한 번에 반환하는 string.js 빌드
cruelladevil Apr 15, 2022
31318f2
README.md를 업데이트 하는 build.js 빌드
cruelladevil Apr 15, 2022
4e3618f
github-action을 위한 yml 빌드
cruelladevil Apr 15, 2022
60ef940
github-action 버그 픽스
cruelladevil Apr 15, 2022
bc6065a
Automatic Update README.md
invalid-email-address Apr 15, 2022
78c906c
main 브랜치에서 동작하도록 yml 수정
cruelladevil Apr 15, 2022
2926531
Merge branch 'cruelladevil-readme-test' into github-action
codeisneverodd Apr 15, 2022
0f2c62a
Merge pull request #28 from cruelladevil/github-action
codeisneverodd Apr 15, 2022
828aea5
Update 테스트용 브랜치로 수정
codeisneverodd Apr 15, 2022
ae170ed
Automatic Update README.md
invalid-email-address Apr 15, 2022
3ae1ae6
Update 리드미 업데이트 테스트용 커밋
codeisneverodd Apr 15, 2022
e4defa0
Update 브랜치 main으로 변경
codeisneverodd Apr 15, 2022
8438052
Update README Contributor test
codeisneverodd Apr 15, 2022
d9fcd46
Merge remote-tracking branch 'origin/cruelladevil-readme-test' into c…
codeisneverodd Apr 15, 2022
8ebddb7
Update 테스트용 브랜치로 변경
codeisneverodd Apr 15, 2022
534acac
Automatic Update README.md
invalid-email-address Apr 15, 2022
0b0fb7d
Update README Form
codeisneverodd Apr 15, 2022
d6c8993
Merge remote-tracking branch 'origin/cruelladevil-readme-test' into c…
codeisneverodd Apr 15, 2022
58a48e2
Automatic Update README.md
invalid-email-address Apr 15, 2022
ca02e69
Update README Form
codeisneverodd Apr 15, 2022
145d035
Merge remote-tracking branch 'origin/cruelladevil-readme-test' into c…
codeisneverodd Apr 15, 2022
5806eb9
Automatic Update README.md
invalid-email-address Apr 15, 2022
8c2f195
Update README Form
codeisneverodd Apr 15, 2022
659895d
Merge remote-tracking branch 'origin/cruelladevil-readme-test' into c…
codeisneverodd Apr 15, 2022
67ef007
Automatic Update README.md
invalid-email-address Apr 15, 2022
b3fc182
Update 테스트용 브랜치와 main 모두 트래킹
codeisneverodd Apr 15, 2022
9f3bf2d
Update main 브랜치로 수정
codeisneverodd Apr 15, 2022
22f1565
Update main 과 테스트용 브랜치 추가
codeisneverodd Apr 15, 2022
52c600d
Update README Form
codeisneverodd Apr 15, 2022
6c05434
Automatic Update README.md
invalid-email-address Apr 15, 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
37 changes: 37 additions & 0 deletions .github/workflows/update-README.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: update README.md

on:
push:
branches:
- main
- cruelladevil-readme-test
pull_request:
branches:
- main
- cruelladevil-readme-test
jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.14.0
uses: actions/setup-node@v3
with:
node-version: 16.14.0
cache: 'npm'
- name: install package
run: npm install
- name: build README.md
run: npm run build
- name: update README.md
run: |
git add .
git config user.name github-actions
git config user.email [email protected]
git commit -m "Automatic Update README.md"
git push
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,4 @@ fabric.properties

# End of https://www.toptal.com/developers/gitignore/api/macos,webstorm
/references/
/package.json
/package-lock.json
/node_modules/
224 changes: 156 additions & 68 deletions README.md

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions level-4/단어-퍼즐.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ function solution(strs, t) {
? -1
: minCountToIndex[tLength - 1];
}

//리드미 테스트용 코멘트
Loading