Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: A Git workflow has been added to automatically create PR from master to cli-use branch #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/cli-branch-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Create a pull request for updating the cli-use branch
on:
push:
branches:
- master
jobs:
cliUsePromotion:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: cli-use
- name: Reset promotion branch
run: |
git fetch origin master:master
git reset --hard master
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
branch: cli-use-promotion
title: 'Update CLI Usage: Merging Changes from master to cli-use'
body: This pull request includes various updates and changes from the `master` branch to the `cli-use` branch. Review and merge as needed.
reviewers: antonyagustine, netrajpatel, shafeeqd959, surajcontentstack, Amitkanswal, abhishek305
Loading