diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml index bf5be697c..658b7e7a3 100644 --- a/.github/workflows/issue-labeler.yml +++ b/.github/workflows/issue-labeler.yml @@ -17,3 +17,13 @@ jobs: configuration-path: .github/labeler.yml include-title: 1 repo-token: ${{ github.token }} + - if: github.actor == 'github-actions[bot]' + uses: actions/github-script@v7 + with: + script: | + github.rest.issues.addLabels({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.issue.number, + labels: ['codex'] + })