From a1fb02f3a2d01faa43369b8c7c684455d080a2de Mon Sep 17 00:00:00 2001 From: amrbashir <48618675+amrbashir@users.noreply.github.com> Date: Sat, 2 Oct 2021 19:47:18 +0200 Subject: [PATCH] chore: add `on_issue_closed.yml` --- .github/workflows/on_issue_closed.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/on_issue_closed.yml diff --git a/.github/workflows/on_issue_closed.yml b/.github/workflows/on_issue_closed.yml new file mode 100644 index 000000000..92fc482a4 --- /dev/null +++ b/.github/workflows/on_issue_closed.yml @@ -0,0 +1,16 @@ +name: On_Issue_Closed + +on: + issues: + types: [closed] + +jobs: + run_tauri_bot_notify: + if: ${{ !github.event.issue.pull_request && github.event.issue.user.login == 'tauri-bot'}} + runs-on: ubuntu-latest + steps: + - name: Run tauri-bot notify action + run: gh wokflow run run.yml -f command=notify url=$ISSUE --repo tauri-apps/bot + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ISSUE: ${{ github.event.issue.html_url }}