From 64609152676c5b082c8277585c2480e77f273bdc Mon Sep 17 00:00:00 2001 From: Harsha Raghu Date: Fri, 15 Oct 2021 17:15:41 +0530 Subject: [PATCH] fix Jobs not found --- .github/workflows/labeler.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 19f6ae79..485249b7 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -2,8 +2,9 @@ name: "Pull Request Labeler" on: - pull_request_target -steps: -- uses: actions/labeler@v3 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - configuration-path: .github/labeler/labeler.yml \ No newline at end of file +jobs: + steps: + - uses: actions/labeler@v3 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: .github/labeler/labeler.yml \ No newline at end of file