CI status hello 3dd2363cbe0f95e2c31e5d71359e950239509376 #1
Workflow file for this run
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
# SPDX-FileCopyrightText: Copyright (c) 2023-present NVIDIA CORPORATION & AFFILIATES. | |
# All rights reserved. | |
# SPDX-License-Identifier: BSD-3-Clause | |
# A workflow to send CI-related helpful information to PRs | |
on: | |
push: | |
branches-ignore: | |
- main | |
tags-ignore: | |
- '**' | |
run-name: CI status hello ${{ github.sha }} | |
jobs: | |
status_hello: | |
name: Send a CI hello status | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
steps: | |
- name: Set CI hello status | |
run: | | |
curl \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \ | |
https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} \ | |
-d "{\"state\":\"success\",\"target_url\":\"https://github.com/NVIDIA/Fuser/wiki/Bot-Commands\",\"description\":\"Authorized users: comment !build or !test to trigger CI pipelines. See wiki.\",\"context\":\"CI notes\"}" |