-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ianychoi/utilize-github-funcs
Utilize .github functionalities with Actions
- Loading branch information
Showing
3 changed files
with
42 additions
and
16 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,16 @@ | ||
--- | ||
name: Template for documentation | ||
about: Documentation | ||
title: '' | ||
labels: documentation | ||
assignees: '' | ||
|
||
--- | ||
|
||
## Describe which content you would like to issue | ||
A clear and concise description of what the issue explains for documentation. | ||
์ด๋ค ๋ถ๋ถ์ ๋ํ ๋ฌธ์ํ๋ฅผ ์ด์ผ๊ธฐํ๋์ง ์์ฝ ์ค๋ช ์ ์ ์ด์ฃผ์ธ์. | ||
|
||
## Additional context (optional) | ||
Explain any other context about this issue here if needed. | ||
๋ถ๊ฐ์ ์ผ๋ก ์ด์์ ๋ํด ์ค๋ช ํ๊ณ ์ ํ๋ ๋ด์ฉ์ด ์์ผ๋ฉด ์ ์ด์ฃผ์ธ์. |
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 @@ | ||
## WHY (PR์ ์ ์ถํ๋ ์ด์ ) | ||
|
||
_Replace this paragraph with a description of why this PR is needed. (์ด ๋ถ๋ถ์ PR์ ์ ์ถํ๊ณ ์ ํ๋ ์ด์ ๋ฅผ ์ ์ด์ฃผ์ธ์)_ | ||
|
||
## HOW (PR์ ํตํด ์ด๋ค ๋ถ๋ถ์ ์์ ํ๊ณ ์ ํ๋๊ฐ) | ||
|
||
_Replace this paragraph with the description on how this PR is changing it. (์ด ๋ถ๋ถ์ ๋ฌด์์ ์ด๋ป๊ฒ ์์ ํ๊ณ ์ ํ๋์ง๋ฅผ ์ ์ด์ฃผ์ธ์)_ | ||
|
||
## Related Issues | ||
|
||
_Replace this paragraph with a list of issues related to this PR from our [issue database]. (์ด์ ๋ถ๋ถ์ ์ ์๋ #{์ด์ ๋ฒํธ}% ๋ฅผ ๋์ดํด์ฃผ์ธ์)_ | ||
|
||
## Checklist (ํ์ธ ์ฌํญ) | ||
|
||
Checking the relevant checkboxes (`[x]`) will ensure a smooth and quick review process. (์๋ ๋ถ๋ถ์ ์ฒดํฌํด์ฃผ์๋ฉด ๋ฆฌ๋ทฐํ๋๋ฐ ๋ ์ข์ต๋๋ค) | ||
|
||
- [ ] I signed the CLA. (๋ผ์ด์ ์ค ๋์ ์ฌ๋ถ - Apache License๋ฅผ ๋ฐ๋ฆ ๋๋ค) | ||
- [ ] I listed the related issues. (๊ด๋ จ ์ด์๋ฅผ ์ ์ํ์ฌ ์ฐ๊ฒฐํ์์ต๋๋ค) | ||
- [ ] I am willing to follow-up on review comments in a timely manner. (๋ฆฌ๋ทฐ ๋ด์ฉ์ ์ ๋ฐ๋ฅด๊ณ ์ ํฉ๋๋ค) | ||
|
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 |
---|---|---|
|
@@ -4,10 +4,6 @@ on: | |
push: | ||
branches: | ||
- master | ||
pull_request: | ||
types: [opened, synchronize, reopened, closed] | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build_and_deploy_job: | ||
|
@@ -18,6 +14,12 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Install Python dependencies and tox | ||
run: | | ||
python -m pip install --upgrade pip | ||
sudo apt install python-tox | ||
- name: Docs Lint and Sphinx build with tox | ||
run: tox | ||
- name: Build And Deploy | ||
id: builddeploy | ||
uses: Azure/[email protected] | ||
|
@@ -31,15 +33,3 @@ jobs: | |
api_location: "api" # Api source code path - optional | ||
app_artifact_location: "doc/build/html" # Built app content directory - optional | ||
###### End of Repository/Build Configurations ###### | ||
|
||
close_pull_request_job: | ||
if: github.event_name == 'pull_request' && github.event.action == 'closed' | ||
runs-on: ubuntu-latest | ||
name: Close Pull Request Job | ||
steps: | ||
- name: Close Pull Request | ||
id: closepullrequest | ||
uses: Azure/[email protected] | ||
with: | ||
azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_ZEALOUS_OCEAN_0BB043E1E }} | ||
action: "close" |