Skip to content

Commit

Permalink
🔄 synced local '.github/workflows/' with remote 'workflows/'
Browse files Browse the repository at this point in the history
Signed-off-by: bitnami-bot <bitnami-bot@vmware.com>
  • Loading branch information
bitnami-bot committed Dec 5, 2023
1 parent c00957b commit 6f0a59c
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 8 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pr-reviews-requested.yml
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
23 changes: 15 additions & 8 deletions .github/workflows/pr-reviews.yml
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

0 comments on commit 6f0a59c

Please sign in to comment.