Files
containers/.github/workflows/pr-reviews.yml
Bitnami Bot 6f1fd34205 🔄 synced file(s) with bitnami/support (#65274)
🔄 synced local '.github/workflows/' with remote 'workflows/'

Signed-off-by: bitnami-bot <bitnami-bot@vmware.com>
2024-04-19 11:43:27 +02:00

29 lines
877 B
YAML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Copyright VMware, Inc.
# SPDX-License-Identifier: APACHE-2.0
name: '[Support] PR review comment card movements'
on:
pull_request_review_comment:
types:
- created
pull_request_review:
types:
- submitted
- dismissed
permissions: {}
# Avoid concurrency over the same issue
concurrency:
group: card-movement-${{ github.event.pull_request.number }}
jobs:
just-notice:
# This is a dummy workflow that triggers a workflow_run
runs-on: ubuntu-latest
steps:
- run: |
echo "::notice:: Comment on PR #${{ github.event.pull_request.number }}"
echo "${{ github.event.pull_request.number }}" > pull_request_number
- name: Upload the PR number
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba
with:
name: pull_request_number
path: ./pull_request_number