Skip to content

Commit

Permalink
Port .take functionality for Good First Issues from OpenVINO reposi…
Browse files Browse the repository at this point in the history
…tory (openvinotoolkit#278)

Merging this workflow allows open source contributors to comment `.take`
under a Good First Issue and automatically pick it up. The community is
already accustomed to that and currently it does not work in GenAI GFIs.

Equivalent in OpenVINO:
https://github.com/openvinotoolkit/openvino/blob/master/.github/workflows/assign_issue.yml
  • Loading branch information
p-wysocki authored Mar 4, 2024
1 parent 6f9cbb1 commit 234f887
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/assign_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Take Issue

on:
issue_comment:
types:
- created
- edited

jobs:
take-issue:
name: Take issue
runs-on: ubuntu-latest
permissions:
issues: write
timeout-minutes: 10
steps:
- name: take an issue
uses: bdougie/[email protected]
with:
message: Thank you for looking into this issue! Please let us know if you have any questions or require any help.
issueCurrentlyAssignedMessage: Thanks for being interested in this issue. It looks like this ticket is already assigned to a contributor. Please communicate with the assigned contributor to confirm the status of the issue.
trigger: .take
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 234f887

Please sign in to comment.