From 2cd321963630162164c83924d4c5a898f4dae89d Mon Sep 17 00:00:00 2001 From: Thomas des Francs Date: Wed, 2 Oct 2024 17:38:15 +0200 Subject: [PATCH] Create pm-actions-cool.yaml (#7395) Adding actions Cool for assigning issues from comments --- .github/workflows/pm-actions-cool.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pm-actions-cool.yaml diff --git a/.github/workflows/pm-actions-cool.yaml b/.github/workflows/pm-actions-cool.yaml new file mode 100644 index 000000000..70afd6e93 --- /dev/null +++ b/.github/workflows/pm-actions-cool.yaml @@ -0,0 +1,17 @@ +name: Assign + +on: + issues: + types: [opened, edited] + issue_comment: + types: [created, edited] + +jobs: + add-assigness: + runs-on: ubuntu-latest + steps: + - name: Add assigness + uses: actions-cool/issues-helper@v3 + with: + actions: 'add-assignees' + token: ${{ secrets.TOKEN_FOR_GITHUB_BOT }}