summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAnton Korobeynikov <anton@korobeynikov.info>2022-01-27 23:06:15 +0300
committerAnton Korobeynikov <anton@korobeynikov.info>2022-01-27 23:06:15 +0300
commit1f26aa42cedc110b5fab7516e33a3c432f473129 (patch)
treeac22167a5fd5227d47e7724aeeecd923d602c862 /.github/workflows
parent5aa24558cfa67e2a2e99c4e9c6d6b68bf372e00e (diff)
downloadllvm-1f26aa42cedc110b5fab7516e33a3c432f473129.tar.gz
Remove "awaiting-review" labels from closed issues.
Fixes #53451
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/closed-issues.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/closed-issues.yml b/.github/workflows/closed-issues.yml
new file mode 100644
index 000000000000..dba8503d5778
--- /dev/null
+++ b/.github/workflows/closed-issues.yml
@@ -0,0 +1,13 @@
+name: Labeling closed issues
+on:
+ issues:
+ types: ['closed']
+
+jobs:
+ automate-issues-labels:
+ runs-on: ubuntu-latest
+ if: github.repository == 'llvm/llvm-project'
+ steps:
+ - uses: andymckay/labeler@1.0.4
+ with:
+ remove-labels: "awaiting-review" \ No newline at end of file