Skip to content

refactor: Split component manager registry wiring #412

refactor: Split component manager registry wiring

refactor: Split component manager registry wiring #412

# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Notify Slack on Pull Request
on:
pull_request_target:
types: [opened]
jobs:
notify-slack:
runs-on: ubuntu-latest
steps:
- name: Send Slack Notification
uses: slackapi/slack-github-action@v2.1.1 # Use a pre-existing action
env:
MESSAGE: ":github: *nico-rest* - ${{ github.event.pull_request.title }}\nOpened by: *${{ github.event.pull_request.user.login }}*\nURL: ${{ github.event.pull_request.html_url }}"
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
payload: |
text: ${{ toJSON(env.MESSAGE) }}