Skip to content

Commit

Permalink
update (#114)
Browse files Browse the repository at this point in the history
* update

* update

* update

* update

* update

* update
  • Loading branch information
dongminlee94 committed Dec 28, 2022
1 parent 098f4e7 commit a18a3e9
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 1 deletion.
43 changes: 43 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: "Automation] Pull Request"
on:
pull_request:
types: [opened, synchronize, edited, reopened, closed]

jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: anencore94/[email protected]
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

assign-reviewer:
runs-on: ubuntu-latest
steps:
- name: reviewers
uses: hkusu/review-assign-action@v1
with:
assignees: ${{ github.actor }}
reviewers: dongminlee94, Clyde21c
max-num-of-reviewers: 2
draft-keyword: WIP # A keyword in the pull request title to treat as draft pull requests

size-label:
runs-on: ubuntu-latest
steps:
- name: size-label
uses: pascalgn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
IGNORED: "**/component.yaml\n**/__init__.py"
with:
sizes: >
{
"0": "XS",
"8": "S",
"40": "M",
"110": "L",
"400": "XL",
"1000": "XXL",
"3000": "XXXL"
}
19 changes: 19 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Repo CI] Python Code"

on:
pull_request:

jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8.15'
- name: Initial setup
shell: bash -l {0}
run: make init-dev
- uses: pre-commit/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

## 필요 조건

이 레포지토리에서는 **python 3.8.8** 버전을 사용합니다.
이 레포지토리에서는 **python 3.8.15** 버전을 사용합니다.

## 설치 및 사용 방법

Expand Down

0 comments on commit a18a3e9

Please sign in to comment.