Pārlūkot izejas kodu

Added handle-issues.yml to clean up no response sections (#1903)

* Added handle-issues.yml to clean up no response sections

* Added permissions to handle-issues.yml
AdityaSOfficial 7 mēneši atpakaļ
vecāks
revīzija
0ba5e3916e
1 mainītis faili ar 35 papildinājumiem un 0 dzēšanām
  1. 35 0
      .github/workflows/hande-issues.yml

+ 35 - 0
.github/workflows/hande-issues.yml

@@ -0,0 +1,35 @@
+name: Remove 'No response', 'NA', and 'N/A' Sections
+
+on:
+  issues:
+    types: [opened]
+
+jobs:
+  clean_issue_body:
+    runs-on: ubuntu-latest
+    permissions:
+      issues: write
+    steps:
+      - name: Remove 'No response', 'NA', and 'N/A' sections
+        uses: actions/github-script@v6
+        with:
+          github-token: ${{ secrets.GITHUB_TOKEN }}
+          script: |
+            const issue = context.payload.issue;
+            let body = issue.body;
+
+            // Regex to match '### <Title>' followed by '_No response_', 'NA', or 'N/A', including possible spaces or newlines
+            const noResponsePattern = /(###\s+[^\n]+\n\s*(_No response_|NA|N\/A)\s*\n?)/g;
+
+            // Replace all matched sections
+            let cleanedBody = body.replace(noResponsePattern, '');
+
+            // Update the issue body if changes were made
+            if (cleanedBody.trim() !== body.trim()) {
+              await github.rest.issues.update({
+                issue_number: issue.number,
+                owner: context.repo.owner,
+                repo: context.repo.repo,
+                body: cleanedBody.trim()
+              });
+            }