Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8727ef0

Browse files
committedNov 16, 2024·
Test Commit: test qiita
1 parent 6094679 commit 8727ef0

File tree

3 files changed

+48
-22
lines changed

3 files changed

+48
-22
lines changed
 

‎.github/scripts/sync_qiita.py

+31-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import os
22
import json
33
import requests
4+
import subprocess
45
from pathlib import Path
56

67
# Qiita APIの設定
@@ -9,16 +10,21 @@
910

1011
# 記事/IDを管理するファイルのパス
1112
POSTS_DIR = "qiita_posts/"
12-
ARTICLE_IDS_FILE = Path(".github/scripts/qiita_article_ids.json")
13+
ARTICLE_IDS_FILE = Path("qiita_article_ids.json")
1314

1415
# qiita_posts ディレクトリ内の変更されたファイルを取得する関数
1516
def get_modified_files():
16-
# git diff を使って、qiita_posts/ 内で変更されたファイルを取得
17-
result = subprocess.run(
18-
["git", "diff", "--name-only", "HEAD", POSTS_DIR],
19-
stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True
20-
)
21-
modified_files = result.stdout.splitlines()
17+
try:
18+
# git diff を使って、qiita_posts/ 内で変更されたファイルを取得
19+
result = subprocess.run(
20+
["git", "diff", "--name-only", "HEAD~", "HEAD", POSTS_DIR],
21+
check=True,
22+
stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True
23+
)
24+
modified_files = result.stdout.splitlines()
25+
except subprocess.CalledProcessError as e:
26+
print(f'Error: {e.stderr}')
27+
2228
return modified_files
2329

2430
# Qiitaに記事を投稿または更新する関数
@@ -45,6 +51,7 @@ def post_or_update_article(file_path, article_id=None):
4551
json={"title": file_path.stem, "body": content, "tags": [], "private": True} # プライベート設定
4652
)
4753

54+
# print(f"Debug: {response}")
4855
# エラーチェック
4956
if response.status_code == 200:
5057
return response.json()["id"]
@@ -62,7 +69,7 @@ def update_article_ids(new_article_id):
6269
data = {"article_ids": []}
6370

6471
# 新しい記事IDを追加
65-
if new_article_id not in data["article_ids"]:
72+
if new_article_id not in data.get("article_ids"):
6673
data["article_ids"].append(new_article_id)
6774

6875
# JSONファイルを更新
@@ -79,22 +86,30 @@ def sync_articles():
7986
file_path = Path(file)
8087

8188
# 変更されたファイルが qiita_posts/ に含まれているか確認
82-
if file_path.startswith(POSTS_DIR) and file_path.suffix == ".md": # TODO Path.globでやるのもあり。
89+
if file.startswith(POSTS_DIR) and file_path.suffix == ".md": # TODO Path.globでやるのもあり。
8390
article_id = None
8491
# article_id がすでに JSON に存在するか確認
85-
with open(ARTICLE_IDS_FILE, "r", encoding="utf-8") as f:
86-
data = json.load(f)
87-
for existing_article_id in data["article_ids"]:
88-
if existing_article_id in file.name:
89-
article_id = existing_article_id
90-
break
92+
try:
93+
if ARTICLE_IDS_FILE.exists():
94+
with open(ARTICLE_IDS_FILE, "r", encoding="utf-8") as f:
95+
data = json.load(f)
96+
else:
97+
data = {"article_ids": []}
98+
99+
for existing_article_id in data.get("article_ids"):
100+
if existing_article_id in file.name:
101+
article_id = existing_article_id
102+
break
103+
except (FileNotFoundError, PermissionError) as e:
104+
pass # 例外を無視して処理を続ける
91105

92106
# Qiita に記事を投稿または更新
93-
new_article_id = post_or_update_article(file, article_id)
107+
new_article_id = post_or_update_article(file_path, article_id)
94108

95109
# 成功した場合は記事IDを更新
96110
if new_article_id:
97111
update_article_ids(new_article_id)
98112

113+
99114
if __name__ == "__main__":
100115
sync_articles()

‎.github/workflows/qiita-post.yml

+15-4
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ jobs:
1212

1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 2 # リポジトリの最新2件の履歴を取得
1618

1719
- name: Set up Python
18-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
1921
with:
20-
python-version: 3.10
22+
python-version: '3.12.7'
2123

2224
- name: Install dependencies
2325
run: |
@@ -29,10 +31,19 @@ jobs:
2931
QIITA_ACCESS_TOKEN: ${{ secrets.QIITA_API_TOKEN }}
3032
run: python .github/scripts/sync_qiita.py
3133

34+
- name: Check for changes in qiita_posts
35+
id: check_changes
36+
run: |
37+
# qiita_article_ids.json を変更対象として確認
38+
git diff --quiet qiita_article_ids.json
39+
echo "Changes detected in qiita_article_ids.json: $?"
40+
continue-on-error: true # git diff がエラーを返してもエラーとして扱わない
41+
3242
- name: Commit updated article IDs
43+
if: steps.check_changes.outcome == 'failure' # 変更があった場合にのみ実行
3344
run: |
3445
git config --global user.name "github-actions[bot]"
3546
git config --global user.email "github-actions[bot]@users.noreply.github.com"
36-
git add .github/scripts/qiita_article_ids.json
47+
git add qiita_article_ids.json
3748
git commit -m "Update article IDs"
3849
git push

‎qiita_posts/test.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# aa
22

3-
# foo
3+
## foo
44

55
```bash
66
print hello
7-
```
7+
```

0 commit comments

Comments
 (0)
Please sign in to comment.