Bump rack from 2.2.7 to 2.2.8.1 #35
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: "UTIL: Create promotion pull request for default branch" | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
masterPromotion: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: master | |
- name: Reset master branch | |
run: | | |
git fetch origin develop:develop | |
git reset --hard develop | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
branch: develop | |
title: "Promote changes from develop to the master branch" | |
body: "" |