-
Notifications
You must be signed in to change notification settings - Fork 98
README.md 자동업데이트 #28
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
codeisneverodd
merged 9 commits into
codeisneverodd:cruelladevil-readme-test
from
cruelladevil:github-action
Apr 15, 2022
Merged
README.md 자동업데이트 #28
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e216dae
패키지 추가 및 gitignore 수정
cruelladevil a9255ac
title과 link를 크롤링하는 fetch.js 빌드
cruelladevil f5f42e4
README.md의 문제 table data를 한 번에 반환하는 string.js 빌드
cruelladevil 31318f2
README.md를 업데이트 하는 build.js 빌드
cruelladevil 4e3618f
github-action을 위한 yml 빌드
cruelladevil 60ef940
github-action 버그 픽스
cruelladevil bc6065a
Automatic Update README.md
invalid-email-address 78c906c
main 브랜치에서 동작하도록 yml 수정
cruelladevil 2926531
Merge branch 'cruelladevil-readme-test' into github-action
codeisneverodd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
.github/workflows/update-README.yml
This file contains hidden or 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,34 @@ | ||
# 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 ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
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 github-actions@github.com | ||
git commit -m "Automatic Update README.md" | ||
git push |
This file contains hidden or 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
197 changes: 133 additions & 64 deletions
README.md
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.