-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🎉 新しいワークフローを追加: 毎年1月1日にライセンス年を更新する自動化 * 📄 READMEにライセンス情報を追加 * 📄 READMEに貢献方法のセクションを追加 * 📄 markdownlintの設定ファイルを追加し、pre-commitフックにmarkdownlintを統合 * READMEと日本語版READMEにヘッダー画像とタイトルを追加し、説明文を強調表示。アクションのバージョンをv1.0.0に更新。 * READMEのヘッダー画像のパスを修正 * READMEの使用例の名前を「OpenAI PR Description Generator」から「OpenAI Generate PR Title and Description」に変更 * アクションのブランディングの色を青から緑に変更し、アイコンをターミナルからコードに更新 * pipのアップグレードとuvのセットアップ手順をワークフローに追加 * コミットログの履歴制限を70に設定
- Loading branch information
Showing
8 changed files
with
103 additions
and
10 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
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,28 @@ | ||
--- | ||
name: Update License Year | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 1 1 *' # 毎年1月1日に実行 | ||
workflow_dispatch: | ||
|
||
jobs: | ||
commit-changes: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
permissions: | ||
contents: write # git push するために必要 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Generate GitHub App Token | ||
id: app_token | ||
uses: actions/create-github-app-token@v1 | ||
with: | ||
app-id: ${{ secrets.GHA_APP_ID }} | ||
private-key: ${{ secrets.GHA_APP_PRIVATE_KEY }} | ||
owner: ${{ github.repository_owner }} | ||
|
||
- uses: tqer39/[email protected] | ||
with: | ||
github-token: ${{ steps.app_token.outputs.token }} |
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,19 @@ | ||
{ | ||
"MD013": false, | ||
"MD024": false, | ||
"MD030": false, | ||
"MD033": { | ||
"allowed_elements": [ | ||
"a", | ||
"details", | ||
"h1", | ||
"i", | ||
"img", | ||
"p", | ||
"span", | ||
"summary" | ||
] | ||
}, | ||
"MD041": false, | ||
"default": true | ||
} |
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.