From 44601e11c242e9625479127059645de10a03269a Mon Sep 17 00:00:00 2001 From: Vikrant Singh Date: Sat, 14 Feb 2026 16:43:39 -0800 Subject: [PATCH] chore: fix typos in GitHub Actions workflow files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix job name typo `asses-issue` → `assess-issue` in welcome-issue.yml - Remove extra whitespace in workflow name in welcome-issue.yml - Fix misleading step name "Auto-assign issue" → "Auto-assign pull request" in welcome-pr.yml --- .github/workflows/welcome-issue.yml | 4 ++-- .github/workflows/welcome-pr.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/welcome-issue.yml b/.github/workflows/welcome-issue.yml index 8b1843be7e..44a6ade7c5 100644 --- a/.github/workflows/welcome-issue.yml +++ b/.github/workflows/welcome-issue.yml @@ -1,4 +1,4 @@ -name: Welcome to the Microsoft Generative AI +name: Welcome to the Microsoft Generative AI on: # Trigger the workflow on new issue issues: @@ -7,7 +7,7 @@ permissions: contents: read issues: write jobs: - asses-issue: + assess-issue: runs-on: ubuntu-latest steps: - name: Add Label and thanks comment to Issue diff --git a/.github/workflows/welcome-pr.yml b/.github/workflows/welcome-pr.yml index c16f37e131..fa1e31e7cb 100644 --- a/.github/workflows/welcome-pr.yml +++ b/.github/workflows/welcome-pr.yml @@ -27,7 +27,7 @@ jobs: repo: context.repo.repo, body: `👋 Thanks for contributing @${ issueAuthor }! We will review the pull request and get back to you soon.` }) - - name: Auto-assign issue + - name: Auto-assign pull request uses: pozil/auto-assign-issue@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }}