From 82df46e7c9f961e4b4199a73dc730f8e21b06d44 Mon Sep 17 00:00:00 2001 From: Felipe Augusto <14238257+felipementel@users.noreply.github.com> Date: Tue, 14 May 2024 12:08:31 -0300 Subject: [PATCH] Create issue.yml --- .github/workflows/issue.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/issue.yml diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml new file mode 100644 index 0000000..6a43b13 --- /dev/null +++ b/.github/workflows/issue.yml @@ -0,0 +1,14 @@ +on: + issues: + types: + - opened + +jobs: + label_issue: + runs-on: ubuntu-latest + steps: + - env: + GH_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %} + ISSUE_URL: {% raw %}${{ github.event.issue.html_url }}{% endraw %} + run: | + gh issue edit $ISSUE_URL --add-label "triage"