name: Cleanup PR Body on: pull_request_target: types: [opened, reopened, edited] permissions: pull-requests: write jobs: update-description: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Set up Python uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0 with: python-version: '3.12' - name: Install Python dependencies run: | python3 -m pip install --upgrade pip python3 -m pip install regex - name: Update PR description env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: bash .github/scripts/cleanup_pr_body.sh "${{ github.event.number }}"