🐈
Github ActionsからPull Requestを作成する方法
記事の内容
Github ActionsからPull Requestを作成する方法を紹介します
記事の長さ
1分で読めます
Github ActionsからPRを作成する
を使うとすぐに実装できます。
上記のGithub Actions Moduleをuseして、設定値を書くだけです。
name: Create PR
on:
push:
permissions:
id-token: write
contents: write
pull-requests: write
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: peter-evans/create-pull-request@v4
with:
commit-message: Commit Message
title: PR Title
branch: create-pull-request/release/app
権限エラーになった場合
Error: GitHub Actions is not permitted to create or approve pull requests.
というエラーが出た場合
以下の記事で解決方法を紹介しています。
note
勉強法やキャリア構築法など、エンジニアに役立つ記事をnoteで配信しています。
Discussion