Skip to content

Commit 52d2da1

Browse files
authored
Merge pull request #764 from hwakabh/main
2 parents f9adbef + 8adf94b commit 52d2da1

File tree

4 files changed

+431
-312
lines changed

4 files changed

+431
-312
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ relates: #
55
## What does this PR do?
66
Describe what changes you make in your branch:
77

8+
<!-- START pr-commits -->
9+
<!-- END pr-commits -->
810

911
## (Optional) Additional Contexts
1012
Describe additional information for reviewers (i.e. What does not included)

.github/workflows/backend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
with:
6565
image: 'us-central1-docker.pkg.dev/hwakabh-dev/ghcr/hwakabh/gh-pages-api:latest'
6666
service: 'gh-pages-api-server'
67-
flags: '--service-min-instances=3'
67+
flags: '--service-min-instances=1'
6868
env_vars: |
6969
MAIL_API_KEY=${{ env.MAIL_API_KEY }}
7070
TUMBLR_CONSUMER_KEY=${{ env.TUMBLR_CONSUMER_KEY }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Sync commit diff to PRs
2+
3+
on:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
permissions:
8+
contents: read
9+
pull-requests: write
10+
11+
jobs:
12+
sync-commit-messages:
13+
runs-on: ubuntu-24.04
14+
steps:
15+
# https://github.com/actions/checkout
16+
- name: Checkout
17+
uses: actions/checkout@v5
18+
19+
# https://github.com/technote-space/pr-commit-body-action/tree/main
20+
- name: Pull Request Body
21+
uses: technote-space/pr-commit-body-action@v1

0 commit comments

Comments
 (0)