From 65ad61a8dc176ab373014aa4488705e41f1a9701 Mon Sep 17 00:00:00 2001 From: jdwilkin4 Date: Mon, 18 Dec 2023 18:07:12 -0800 Subject: [PATCH] chore: adding .github folder and workflows --- .github/CODEOWNERS | 2 ++ .github/workflows/triage.yml | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/workflows/triage.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..f1bb752 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +@open-sauced/triage +@open-sauced/docs \ No newline at end of file diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml new file mode 100644 index 0000000..dc999db --- /dev/null +++ b/.github/workflows/triage.yml @@ -0,0 +1,19 @@ +name: "Assign issues with .take" + +on: + issue_comment: + types: + - created + - edited + +jobs: + take-issue: + name: Disable take issue + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: take an issue + uses: bdougie/take-action@main + with: + issueCurrentlyAssignedMessage: Thanks for being interested in this issue. It looks like this ticket is already assigned to a contributor. + token: ${{ secrets.GITHUB_TOKEN }}