Have you every wondered why just use github action reply for 1st interaction and not nth Interaction or upto nth interaction.
This action (custom-interactions) helps you achieve that goal. You can use it to create custom interactions for your github action for upto nth interaction.
name: Greetings
on: [pull_request, issues]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: bartick/custom-interactions@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Thank you for opening your first issue in our repository, one of our maintainers will get in touch with you soon.
pr-message: |
Thank you for opening your first pull request in our repository, one of our maintainers will get in touch with you soon.
pr-once: false
issue-once: false
pr-number: 10
issue-number: 10