Workflow file for this run
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 pull request from candidate to master | |
on: | |
release: | |
types: [published] | |
jobs: | |
candidateToMaster: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: Reset candidate | |
run: | | |
git fetch origin candidate:candidate | |
git reset --hard candidate | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
title: Candidate | |
body: This is the candidate merge after a successful SDK release | |
labels: SDK | |
branch: candidate |