Merge pull request #1 from munyweleco/feat/yii2-migration #1
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
name: Create next release | |
on: | |
push: | |
branches: develop | |
jobs: | |
action-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create pull request | |
uses: devops-infra/action-pull-request@v0.5.5 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
title: 'Next release' | |
reviewer: ${{ github.actor }} | |
assignee: ${{ github.actor }} | |
target_branch: main | |
label: automatic,release | |
new_string: ${{ github.event.commits[0].message }} | |
get_diff: true |