-
Notifications
You must be signed in to change notification settings - Fork 48
37 lines (34 loc) · 1.11 KB
/
create-release-pr.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
37
name: Create release PR
on:
push:
branches:
- develop
jobs:
create-pr-to-main:
name: Create release PR to main
runs-on: ubuntu-latest
steps:
- name: Create Pull Request
uses: actions/github-script@v6
with:
script: |
const { repo, owner } = context.repo;
const pullRequestResponse = await github.rest.pulls.list({
owner,
repo,
base: 'main'
});
if (pullRequestResponse.status === 200 && pullRequestResponse.data.length === 0) {
const result = await github.rest.pulls.create({
title: 'Merge Develop onto Main',
owner,
repo,
head: 'develop',
base: 'main',
body: [
'This PR was auto-generated - see create-release-pr.yml and ',
'[actions/github-script](https://github.com/actions/github-script).',
'Merging this PR will trigger an automatic deployment to production.'
].join('\n')
});
}