Skip to content
Open
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
35 changes: 35 additions & 0 deletions .github/workflows/icbundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Integration Candidate Bundle Generation

# Generate Integration Candidate branch for this repository.

on:
workflow_dispatch:
inputs:
pr_nums:
description: 'The pull request numbers to include. Comma separated'
required: true
type: string

jobs:
generate-ic-bundle:
runs-on: ubuntu-latest
steps:
- name: Checkout IC Branch
uses: actions/checkout@v3
with:
fetch-depth: '0'
ref: main
- name: Rebase IC Branch
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
git pull
git checkout integration-candidate
git rebase main
- name: Merge each PR
run: |
prs=$(echo ${{ inputs.pr_nums }} | tr "," "\n")
for pr in $prs
do
git merge origin/pull/$pr/head --no-ff -m "Merge pull request #$pr from branch\n\nmessage"
done
1 change: 1 addition & 0 deletions test1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
qwertyuiop