Skip to content

Commit

Permalink
GitHub の構成を最適化
Browse files Browse the repository at this point in the history
  • Loading branch information
s1204IT committed Apr 29, 2024
1 parent 8af5f4f commit 2b7c2a6
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @s1204IT
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
### 確認項目
<!--
以下の項目を全て確認し、満たしている場合は
[ ] を [x] に書き換えてください。
該当部分以外は書き換えないでください。
-->

- [ ] <!-- Choice,multiple --> 動作確認済み
- [ ] <!-- Choice,multiple --> 誤字脱字無し

---
### 説明
<!--
プルリクエストの詳細を以下に記述してください。
-->
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: write
steps:

- name: Checkout
Expand Down Expand Up @@ -51,7 +49,7 @@ jobs:
} >> $GITHUB_ENV
- name: Check tag exists
uses: mukunku/tag-exists-action@v1.5.0
uses: mukunku/tag-exists-action@v1.6.0
if: github.event.inputs.release == 'true'
id: check-tag
with:
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/lock_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Lock issue

on:
issues:
types:
- closed
- reopened

jobs:
lock:
name: Lock
runs-on: ubuntu-latest
steps:

- name: Lock issue
uses: s1204IT/lock-issues@v1.2
if: github.event.issue.state == 'closed'
id: locked

- name: Unlock issue
uses: s1204IT/unlock-issues@v1.2
if: steps.locked.outcome != 'success'
16 changes: 16 additions & 0 deletions .github/workflows/pr_moderation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: PR Moderation

on:
pull_request:
types:
- opened
- edited
- reopened

jobs:
verify:
name: Verify
runs-on: ubuntu-latest
steps:
- name: Check tasklist
uses: Awayume/github-pr-tasklist-checker@v1
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ dependencyResolutionManagement {
}

rootProject.name = 'Galaxy CamSnd'
include ':app'
include 'app'

0 comments on commit 2b7c2a6

Please sign in to comment.