-
Notifications
You must be signed in to change notification settings - Fork 9
/
action.yml
36 lines (36 loc) · 1.57 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Create PR
description: |
変更したファイルをコミットし、プルリクエストを作成します。
プルリクエストのタイトルや本文には、コミットメッセージがそのまま利用されます。
パーミッションに「contents: write」と「pull-requests: write」が必要です。
inputs:
message: # アクションの入力
required: true
description: コミットメッセージ
outputs:
branch: # アクションの出力
value: ${{ steps.pr.outputs.branch }}
description: プルリクエストのブランチ
runs:
using: composite
steps:
- id: pr
shell: bash
env:
USERNAME: github-actions[bot]
EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
MESSAGE: ${{ inputs.message }}
BRANCH: auto/${{ github.run_id }}/${{ github.run_attempt }}
GITHUB_TOKEN: ${{ github.token }}
run: |
echo "branch=${BRANCH}" >> "${GITHUB_OUTPUT}"
git config --global user.name "${USERNAME}" # Gitのユーザー設定
git config --global user.email "${EMAIL}"
git switch -c "${BRANCH}" # コミットとプッシュ
git add .
git commit -m "${MESSAGE}"
git push origin "${BRANCH}" # プルリクエストの作成(↓)
gh pr create --head "${BRANCH}" --title "${MESSAGE}" --body "${MESSAGE}"
branding: # ブランディング設定
color: green # 緑色
icon: shield # シールドアイコン