Skip to content

Commit

Permalink
Added handle-issues.yml to clean up no response sections (#1903)
Browse files Browse the repository at this point in the history
* Added handle-issues.yml to clean up no response sections

* Added permissions to handle-issues.yml
  • Loading branch information
AdityaS8804 authored Oct 7, 2024
1 parent b905f25 commit 0ba5e39
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/hande-issues.yml
Original file line number Diff line number Diff line change
@@ -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()
});
}

0 comments on commit 0ba5e39

Please sign in to comment.