Skip to content

Commit

Permalink
Updating SVE cherry-pick rules (#20387)
Browse files Browse the repository at this point in the history
* Updating SVE rules

* Fixing paths
  • Loading branch information
woody-apple authored and pull[bot] committed Jul 20, 2023
1 parent 25c6cda commit 86e3341
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 32 deletions.
5 changes: 5 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ setup payload:
############################################################
platform:
- src/platform/*
- config/tizen/chip-gn/platform/*
- examples/platform/*
- scripts/tools/memory/platform/*
- src/include/platform/*
- src/lib/dnssd/platform/*

darwin:
- src/platform/Darwin/*
Expand Down
68 changes: 36 additions & 32 deletions .github/workflows/cherry-picks.yaml
Original file line number Diff line number Diff line change
@@ -1,38 +1,42 @@
name: Cherry-Pick Merges

on:
pull_request_target:
branches:
- master
types: ["closed"]
pull_request_target:
branches:
- master
types: ["closed"]

jobs:
cherry_pick_release_v1_0:
runs-on: ubuntu-latest
name: Cherry-Pick into SVE
if: |
(github.event.pull_request.merged == true)
&& (
(contains(github.event.pull_request.labels.*.name, 'sve'))
|| (contains(github.event.pull_request.labels.*.name, 'cert blocker'))
|| (contains(github.event.pull_request.labels.*.name, 'spec'))
|| (contains(github.event.pull_request.labels.*.name, 'platform'))
|| (contains(github.event.pull_request.labels.*.name, 'darwin'))
|| (contains(github.event.pull_request.labels.*.name, 'android'))
|| (contains(github.event.pull_request.labels.*.name, 'sve cherry-pick'))
)
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry-Pick into sve branch
uses: carloscastrojumo/[email protected]
with:
token: ${{ secrets.MATTER_PAT }}
branch: sve
reviewers: |
woody-apple
andy31415
cherry_pick_release_v1_0:
runs-on: ubuntu-latest
name: Cherry-Pick into SVE
if: |
(github.event.pull_request.merged == true)
&& (
(contains(github.event.pull_request.labels.*.name, 'sve'))
|| (contains(github.event.pull_request.labels.*.name, 'cert blocker'))
|| (contains(github.event.pull_request.labels.*.name, 'spec'))
|| (contains(github.event.pull_request.labels.*.name, 'platform'))
|| (contains(github.event.pull_request.labels.*.name, 'darwin'))
|| (contains(github.event.pull_request.labels.*.name, 'android'))
|| (contains(github.event.pull_request.labels.*.name, 'examples'))
|| (contains(github.event.pull_request.labels.*.name, 'scripts'))
|| (contains(github.event.pull_request.labels.*.name, 'workflows'))
|| (contains(github.event.pull_request.labels.*.name, 'github'))
|| (contains(github.event.pull_request.labels.*.name, 'sve cherry-pick'))
)
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cherry-Pick into sve branch
uses: carloscastrojumo/[email protected]
with:
token: ${{ secrets.MATTER_PAT }}
branch: sve
reviewers: |
woody-apple
andy31415
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 86e3341

Please sign in to comment.