forked from ipdk-io/ipdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kyle Mestery <[email protected]>
- Loading branch information
Showing
1 changed file
with
24 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,33 @@ | ||
# | ||
# First Interaction action | ||
# See: https://github.com/actions/first-interaction | ||
# | ||
name: 'First IPDK interaction' | ||
name: 'First Interaction' | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
issues: | ||
types: [ opened ] | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: | | ||
# Thank You For Opening Your First Issue With the IPDK Project | ||
pull_request: | ||
branches: [ main ] | ||
|
||
workflow_dispatch: | ||
|
||
Just a note to point you at some helpful information: | ||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: | | ||
# Thank You For Opening Your First Issue With the IPDK Project | ||
* Please make sure to read our [contributing guidelines](https://github.com/ipdk-io/ipdk/blob/main/CONTRIBUTING.md). | ||
* Feel free to review the list of [IPDK maintainers](https://github.com/ipdk-io/ipdk/blob/main/MAINTAINERS.md) if you need specific help from a maintainer. | ||
Some notes to point you at some helpful information: | ||
pr-message: | | ||
# Thank You For Opening Your First Pull Request With the IPDK Project | ||
* Please make sure to read our [contributing guidelines](https://github.com/ipdk-io/ipdk/blob/main/CONTRIBUTING.md). | ||
* Feel free to review the list of [IPDK maintainers](https://github.com/ipdk-io/ipdk/blob/main/MAINTAINERS.md) if you need specific help from a maintainer. | ||
Just a note to point you at some helpful information: | ||
pr-message: | | ||
# Thank You For Opening Your First Pull Request With the IPDK Project | ||
* Please make sure to read our [contributing guidelines](https://github.com/ipdk-io/ipdk/blob/main/CONTRIBUTING.md). | ||
* Feel free to review the list of [IPDK maintainers](https://github.com/ipdk-io/ipdk/blob/main/MAINTAINERS.md) if you need specific help from a maintainer. | ||
* You can find the yaml for our CI jobs [here](https://github.com/ipdk-io/ipdk/tree/main/.github/workflows). | ||
Some notes to point you at some helpful information: | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
* Please make sure to read our [contributing guidelines](https://github.com/ipdk-io/ipdk/blob/main/CONTRIBUTING.md). | ||
* Feel free to review the list of [IPDK maintainers](https://github.com/ipdk-io/ipdk/blob/main/MAINTAINERS.md) if you need specific help from a maintainer. | ||
* You can find the yaml for our CI jobs [here](https://github.com/ipdk-io/ipdk/tree/main/.github/workflows). |