UDS Server #140
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
# /******************************************************************************** | |
# * Copyright (c) 2022 Contributors to the Eclipse Foundation | |
# * | |
# * See the NOTICE file(s) distributed with this work for additional | |
# * information regarding copyright ownership. | |
# * | |
# * This program and the accompanying materials are made available under the | |
# * terms of the Apache License 2.0 which is available at | |
# * https://www.apache.org/licenses/LICENSE-2.0 | |
# * | |
# * SPDX-License-Identifier: Apache-2.0 | |
# ********************************************************************************/ | |
name: Cherry-Pick Bot | |
on: | |
pull_request: | |
branches: | |
- main | |
types: ["closed"] | |
jobs: | |
cherry_pick_kirkstone: | |
runs-on: ubuntu-22.04 | |
name: Cherry pick into kirkstone | |
if: contains(github.event.pull_request.labels.*.name, 'kirkstone') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Cherry pick into kirkstone | |
uses: carloscastrojumo/github-cherry-pick-action@v1.0.4 | |
with: | |
branch: kirkstone | |
labels: | | |
cherry-pick | |
cherry_pick_honister: | |
runs-on: ubuntu-22.04 | |
name: Cherry pick into honister | |
if: contains(github.event.pull_request.labels.*.name, 'honister') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Cherry pick into honister | |
uses: carloscastrojumo/github-cherry-pick-action@v1.0.4 | |
with: | |
branch: honister | |
labels: | | |
cherry-pick | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |