From 8c48b7495447f149afdb4b873e711ac957852baa Mon Sep 17 00:00:00 2001 From: Deependu Date: Wed, 29 Apr 2026 15:56:29 +0530 Subject: [PATCH] Update greetings workflow for permissions and action version --- .github/workflows/greetings.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index b3838288a..bab149287 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -3,12 +3,16 @@ name: Greetings on: [issues] # pull_request +permissions: + issues: write + pull-requests: write + jobs: greeting: runs-on: ubuntu-latest steps: - - uses: actions/first-interaction@v3 + - uses: actions/first-interaction@v3.1.0 with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - issue-message: "Hi! thanks for your contribution!, great first issue!" - pr-message: "Hey thanks for the input! Please give us a bit of time to review it!" + repo_token: ${{ secrets.GITHUB_TOKEN }} + issue_message: "Hi! Thanks for your contribution! Great first issue!" + pr_message: "Hey, thanks for the input! Please give us a bit of time to review it!"