Illustrating Different Ways to Pass Arrays to a Function: #706
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
name: Greetings | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
greeting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: Suvraneel/Greeting-action@main | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
issue_message: 'Hello @${{github.actor}}, thanks for creating your first issue at LearnCPP, hope you followed the guidelines.' | |
pr-message: 'Congratulations!! for making your first PR at LearnCPP, our mentors will review it soon.' | |