{ "output": "# Reminds PR authors to refresh the GMD coverage baseline when production\n# code changes. Path-filtered on `app/src/main/**` so it only fires when\n# something that *could* affect coverage is touched. Purely informational โ€”\n# never fails the PR.\nname: Baseline Reminder\npermissions:\n contents: read\n pull-requests: write\n\non:\n pull_request:\n branches: [ \"master\" ]\n paths:\n - 'app/src/main/**'\n\nconcurrency:\n group: baseline-reminder-${{ github.ref }}\n cancel-in-progress: true\n\njobs:\n remind:\n name: Coverage Baseline Reminder\n runs-on: ubuntu-latest\n steps:\n - name: Build comment body\n id: body\n run: |\n NOW=$(date -u +'%F %H:%M UTC')\n SHORT_SHA=$(echo \"${{ github.event.pull_request.head.sha }}\" | cut -c1-7)\n {\n echo 'body<> \"$GITHUB_OUTPUT\"\n\n - name: Upsert sticky PR comment\n uses: marocchino/sticky-pull-request-comment@v2\n with:\n header: baseline-reminder-bot\n message: ${{ steps.body.outputs.body }}\n" }