From 9c37d00c21672b05c634e3fab2717154cf3de26a Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sat, 11 Apr 2026 23:52:27 +1000 Subject: [PATCH] Refactor first-interaction workflow configuration Updated the first interaction workflow to use a specific version of the action and modified the input parameters. --- .github/workflows/first-interaction.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/first-interaction.yml b/.github/workflows/first-interaction.yml index 56e5f215..afe63b7e 100644 --- a/.github/workflows/first-interaction.yml +++ b/.github/workflows/first-interaction.yml @@ -1,3 +1,4 @@ +--- name: First Interaction on: @@ -8,21 +9,25 @@ on: types: - opened +permissions: + issues: write + pull-requests: write + jobs: welcome: runs-on: ubuntu-latest steps: - name: First Interaction - uses: actions/first-interaction@v3 + uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0 with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: | + repo_token: ${{ secrets.GITHUB_TOKEN }} + issue_message: | Welcome to our open-source community, and thank you for opening your first issue! 🎉 We're thrilled to have you here. If you have any questions or need assistance, feel free to ask. Your contributions are valued and appreciated. Happy coding! 🚀 - pr-message: | + pr_message: | Hey there! 👋 Thanks for submitting your first pull request. We're excited to see your contribution to our project. If you have any questions, need help, or want feedback, please don't hesitate to reach out. Your efforts make our community stronger.