2021-06-09 10:52:28 -04:00
|
|
|
name: Create release branch and PRs
|
|
|
|
|
|
|
|
# Controls when the action will run.
|
|
|
|
on:
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
|
|
jobs:
|
|
|
|
# This workflow contains a single job called "build"
|
|
|
|
build:
|
|
|
|
# The type of runner that the job will run on
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
steps:
|
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
|
|
|
- name: Checkout master
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
2021-06-09 11:03:13 -04:00
|
|
|
fetch-depth: 0
|
2021-06-09 10:52:28 -04:00
|
|
|
ref: automation-test-master # todo change to master
|
|
|
|
- name: Set output variables
|
|
|
|
id: vars
|
|
|
|
run: |
|
|
|
|
echo ::set-output name=branch::"release/$(date +%Y-%m-%d)"
|
|
|
|
- name: Create release branch and merge develop
|
|
|
|
run: |
|
2021-06-09 11:08:07 -04:00
|
|
|
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
|
|
|
|
git config --global user.name "${{ github.actor }}"
|
2021-06-09 11:46:48 -04:00
|
|
|
git checkout -b ${{ steps.vars.outputs.branch }}
|
2021-06-09 11:04:17 -04:00
|
|
|
git merge origin/develop
|
2021-06-09 11:45:04 -04:00
|
|
|
git push --set-upstream origin ${{ steps.vars.outputs.branch }}
|
2021-06-09 10:52:28 -04:00
|
|
|
- name: Show merge commit
|
|
|
|
run: git --no-pager show
|
2021-06-09 11:45:04 -04:00
|
|
|
- name: pull-request
|
|
|
|
uses: repo-sync/pull-request@v2
|
2021-06-09 10:52:28 -04:00
|
|
|
with:
|
2021-06-09 11:45:04 -04:00
|
|
|
source_branch: ${{ steps.vars.outputs.branch }}
|
|
|
|
destination_branch: develop
|
|
|
|
pr_title: "${{ steps.vars.outputs.branch }}"
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2021-06-09 11:48:59 -04:00
|
|
|
pr_allow_empty: true
|
2021-06-09 11:45:04 -04:00
|
|
|
- name: output-url
|
|
|
|
run: echo ${{steps.open-pr.outputs.pr_url}}
|
|
|
|
- name: output-number
|
|
|
|
run: echo ${{steps.open-pr.outputs.pr_number}}
|
|
|
|
- name: output-has-changed-files
|
|
|
|
run: echo ${{steps.open-pr.outputs.has_changed_files}}
|