-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔄 synced local '.github/workflows/' with remote 'workflows/'
Signed-off-by: bitnami-bot <[email protected]>
- Loading branch information
1 parent
5c226d9
commit 83d6b1a
Showing
2 changed files
with
33 additions
and
8 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,18 @@ | ||
# Copyright VMware, Inc. | ||
# SPDX-License-Identifier: APACHE-2.0 | ||
|
||
name: '[Support] Review based card movements' | ||
on: | ||
pull_request_target: | ||
types: | ||
- review_requested | ||
- synchronize | ||
permissions: | ||
contents: read | ||
#Â Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.number }} | ||
jobs: | ||
call-pr-review-workflow: | ||
uses: bitnami/support/.github/workflows/pr-review-requested-sync.yml@main | ||
secrets: inherit |
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 |
---|---|---|
@@ -1,18 +1,25 @@ | ||
# Copyright VMware, Inc. | ||
# SPDX-License-Identifier: APACHE-2.0 | ||
|
||
name: '[Support] Review based card movements' | ||
name: '[Support] PR review comment card movements' | ||
on: | ||
pull_request_target: | ||
pull_request_review_comment: | ||
types: | ||
- review_requested | ||
- synchronize | ||
permissions: | ||
contents: read | ||
- created | ||
pull_request_review: | ||
types: | ||
- submitted | ||
- dismissed | ||
permissions: {} | ||
#Â Avoid concurrency over the same issue | ||
concurrency: | ||
group: card-movement-${{ github.event.number }} | ||
group: card-movement-${{ github.event.pull_request.number }} | ||
jobs: | ||
call-pr-review-comment-workflow: | ||
if: ${{ github.event_name == 'pull_request_review_comment' }} | ||
uses: bitnami/support/.github/workflows/pr-review-comment.yml@main | ||
secrets: inherit | ||
call-pr-review-workflow: | ||
uses: bitnami/support/.github/workflows/pr-review-requested-sync.yml@main | ||
if: ${{ github.event_name == 'pull_request_review' }} | ||
uses: bitnami/support/.github/workflows/pr-review.yml@main | ||
secrets: inherit |