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

GitHub action demo #1

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
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
38 changes: 14 additions & 24 deletions .github/workflows/cherry-pick-to-2.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,19 @@
name: Auto-create PR on branch "2"
name: PR for release branch
on:
pull_request:
push:
branches:
- main
types: ["closed"]

- gh-action-demo
jobs:
cherry_pick_2:
release_pull_request:
runs-on: ubuntu-latest
name: Cherry pick into branch "2"
if: ${{ github.event.pull_request.merged == true }}
name: release_pull_request
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry pick into branch "2"
uses: carloscastrojumo/[email protected]
with:
branch: 2
labels: |
cherry-pick
reviewers: |
gkamat, IanHoang
title: '[cherry-pick] {old_title}'
body: 'Cherry picking #{old_pull_request_id} onto this branch'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: checkout
uses: actions/checkout@v1
- name: Create PR to branch
uses: gorillio/github-action-cherry-pick@master
with:
pr_branch: '2'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DRY_RUN: false
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
OpenSearch Benchmark Workloads
------------

Testing third time.

This repository contains the default workload specifications for the OpenSearch benchmarking tool [OpenSearch Benchmark](https://github.com/opensearch-project/OpenSearch-Benchmark).

You should not need to use this repository directly, except if you want to look under the hood or create your own workloads.
Expand Down