From 51941f65866c998aa82ce1713547a2e5b21c584a Mon Sep 17 00:00:00 2001 From: mmilunicmobile Date: Thu, 9 Jan 2025 22:49:55 -0500 Subject: [PATCH] Added blocking issues workflow --- .github/workflows/blocking-issues.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/blocking-issues.yml diff --git a/.github/workflows/blocking-issues.yml b/.github/workflows/blocking-issues.yml new file mode 100644 index 00000000..912d10b8 --- /dev/null +++ b/.github/workflows/blocking-issues.yml @@ -0,0 +1,20 @@ +name: Blocking Issues + +on: + issues: + types: [opened, edited, deleted, transferred, closed, reopened] + pull_request_target: + types: [opened, edited, closed, reopened] + +jobs: + blocking_issues: + runs-on: ubuntu-latest + name: Checks for blocking issues + + steps: + - uses: Levi-Lesches/blocking-issues@v2 + with: + # Optional: Choose an existing label to use instead of creating a new one. + # If the label cannot be found, the default one will be created and used. + # The default is: "blocked" (black). + use-label: "blocked issue" \ No newline at end of file