Integration of Trusted Compute sprint-1 fixes into EMF #866
This file contains hidden or 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: 2025 Intel Corporation | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Contributing Guide Reminder | |
on: | |
pull_request: | |
types: [opened] | |
issues: | |
types: [opened] | |
permissions: {} | |
jobs: | |
remind-contributing: | |
permissions: | |
contents: read | |
name: Remind Contributor | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if contributor is first-time | |
id: first-time | |
uses: actions/first-interaction@34f15e814fe48ac9312ccf29db4e74fa767cbab7 # v1.3.0 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: "Thank you for your contribution! Please make sure to review our [Contributing Guide](https://docs.openedgeplatform.intel.com/edge-manage-docs/main/developer_guide/contributor_guide/index.html)." | |
pr-message: "Thank you for your contribution! Please make sure to review our [Contributing Guide](https://docs.openedgeplatform.intel.com/edge-manage-docs/main/developer_guide/contributor_guide/index.html)." |