fix[CI]: fix first interaction workflow (#12247)
Signed-off-by: droctothorpe <mythicalsunlight@gmail.com>
This commit is contained in:
parent
638398f60b
commit
ffaeeda3da
|
|
@ -1,17 +1,23 @@
|
|||
name: First interaction
|
||||
|
||||
on: [pull_request_target, issues]
|
||||
on:
|
||||
pull_request:
|
||||
types:
|
||||
- opened
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
greeting:
|
||||
name: Greet first-time contributors
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
pull-requests: write
|
||||
|
||||
steps:
|
||||
- uses: actions/first-interaction@v3
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
pr-message: "🎉 Welcome! Thanks for making your first pull request to Kubeflow Pipelines! Contributors like ⭐ you ⭐ are what make this project possible! Please make sure to read the [contributing guidelines](https://github.com/kubeflow/pipelines/blob/master/CONTRIBUTING.md)."
|
||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
pr_message: |
|
||||
🎉 Welcome! Thanks for making your first pull request to Kubeflow Pipelines! Contributors like ⭐ you ⭐ are what make this project possible!
|
||||
|
||||
Please make sure to read the [contributing guidelines](https://github.com/kubeflow/pipelines/blob/master/CONTRIBUTING.md).
|
||||
|
|
|
|||
Loading…
Reference in New Issue