mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2024-12-22 22:43:15 +07:00
added the github action when someone opens the issue
This commit is contained in:
parent
703566247b
commit
7a292f28bf
16
.github/workflows/Auto_message_on_creatingissues.yml
vendored
Normal file
16
.github/workflows/Auto_message_on_creatingissues.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
name: Auto message on Creating a Issue.
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [opened]
|
||||
|
||||
jobs:
|
||||
greeting:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Create comment for issue
|
||||
if: github.event_name =='issues'
|
||||
uses: peter-evans/create-or-update-comment@v1
|
||||
with:
|
||||
issue-number: ${{tojson(github.event.issue.number)}}
|
||||
body: Hello there!👋, @${{ github.actor }} Welcome to the Solidity-Pathshala! 🚀⚡Thank you and Congratulations🎉 for opening a issue in this project. Please make sure not to start working on this issue, unless you are assigned to it.😄
|
Loading…
Reference in New Issue
Block a user