forked from SatelliteQE/robottelo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix the broken create issue with adding needs (SatelliteQE#10251)
Co-authored-by: Jitendra Yejare <[email protected]> Co-authored-by: Jitendra Yejare <[email protected]>
- Loading branch information
1 parent
cd89511
commit a2cd5c1
Showing
3 changed files
with
22 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'Auto Assign' | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
|
||
|
||
jobs: | ||
add-assignees: # This needed for to create the gh issue in case of failed auto0-cherry-pick | ||
name: Add author to assignee | ||
if: "!contains(github.event.pull_request.labels.*.name, 'Auto_Cherry_Picked')" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kentaro-m/[email protected] | ||
with: | ||
repo-token: "${{ secrets.CHERRYPICK_PAT || github.token }}" | ||
configuration-path: ".github/auto_assign.yml" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,13 +64,3 @@ jobs: | |
- name: Analysis (git diff) | ||
if: failure() | ||
run: git diff | ||
|
||
# This needed for to create the gh issue in case of failed auto0-cherry-pick | ||
add-assignees: | ||
name: Add author to assignee | ||
if: "!contains(github.event.pull_request.labels.*.name, 'Auto_Cherry_Picked')" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kentaro-m/[email protected] | ||
with: | ||
configuration-path: '.github/auto_assign.yml' |