From 3fb3a7c39e309ac56ab11e5fb12d1821530d2bb6 Mon Sep 17 00:00:00 2001 From: Tsuki Date: Thu, 27 Nov 2025 00:28:19 +0800 Subject: [PATCH 1/3] Update doc/meetings/2025-05-29.md (#1) From 11b2915db557393144d48f82057754388cfc2ab9 Mon Sep 17 00:00:00 2001 From: Tsuki Date: Fri, 28 Nov 2025 20:57:59 +0800 Subject: [PATCH 2/3] Create summary.yml(#3) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Summary Report Configuration # Version 3 # summary.yml(#3) metadata: report_id: "SUM-2025-003" generated_date: "2025-11-28" report_type: "comprehensive" format_version: "3.0" executive_summary: headline: "Overall Performance Review — 2025 Cycle" description: | Laporan ini merangkum capaian, tantangan, dan rekomendasi strategis selama periode Januari hingga November 2025. Fokus utama adalah peningkatan efisiensi, kualitas output, serta kesiapan menuju fase operasional tahun berikutnya. highlights: achievements: - "Mencapai efisiensi proses sebesar 87.5%" - "Quality score stabil di atas 90% sepanjang Q2–Q4" - "Jumlah kategori selesai meningkat dibanding tahun lalu" challenges: - "Keterlambatan pada beberapa milestone mid-year" - "Beberapa kategori masih pending karena keterbatasan data" recommendations: - "Optimalkan proses verifikasi data untuk menutup gap pending" - "Perkuat monitoring KPI bulanan agar tren tetap positif" data_summary: categories: - name: "Category A" count: 25 percentage: 45.5 status: "complete" - name: "Category B" count: 18 percentage: 32.7 status: "in_progress" - name: "Category C" count: 12 percentage: 21.8 status: "pending" totals: all_items: 55 processed: 43 remaining: 12 performance: kpis: efficiency: 87.5 quality_score: 92.3 completion_rate: 78.2 user_satisfaction: 4.5 trends: direction: "positive" change_percent: 12.5 comparison_period: "previous_quarter" timeline: start_date: "2025-01-01" end_date: "2025-11-28" milestones: - date: "2025-03-15" event: "Phase 1 Completed" - date: "2025-07-20" event: "Mid-year Review" - date: "2025-11-28" event: "Final Summary" stakeholders: - name: "Team Lead" role: "Project Manager" contact: "lead@example.com" - name: "Department Head" role: "Supervisor" contact: "head@example.com" next_steps: immediate: - action: "Review findings" deadline: "2025-12-05" owner: "Team Lead" - action: "Implement recommendations" deadline: "2025-12-15" owner: "Development Team" long_term: - action: "Quarterly review" deadline: "2026-03-01" owner: "Management" appendix: references: - "Document 1" - "Document 2" related_reports: - "summary.yml(#1)" - "summary.yml(#2)" notes: | Versi #3 ini mengintegrasikan pembaruan struktural dan penyesuaian berdasarkan hasil evaluasi triwulan terakhir. Dokumen dapat diperluas dengan lampiran tambahan bila diperlukan. --- .github/workflows/summary.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/summary.yml diff --git a/.github/workflows/summary.yml b/.github/workflows/summary.yml new file mode 100644 index 00000000..9b07bb8f --- /dev/null +++ b/.github/workflows/summary.yml @@ -0,0 +1,34 @@ +name: Summarize new issues + +on: + issues: + types: [opened] + +jobs: + summary: + runs-on: ubuntu-latest + permissions: + issues: write + models: read + contents: read + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run AI inference + id: inference + uses: actions/ai-inference@v1 + with: + prompt: | + Summarize the following GitHub issue in one paragraph: + Title: ${{ github.event.issue.title }} + Body: ${{ github.event.issue.body }} + + - name: Comment with AI summary + run: | + gh issue comment $ISSUE_NUMBER --body '${{ steps.inference.outputs.response }}' + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ISSUE_NUMBER: ${{ github.event.issue.number }} + RESPONSE: ${{ steps.inference.outputs.response }} From 0c989b7eef4e7831ca7611fd3aaa4d5d3825f311 Mon Sep 17 00:00:00 2001 From: Tsuki Date: Fri, 28 Nov 2025 20:58:07 +0800 Subject: [PATCH 3/3] Revert "Create summary.yml(#3)" This reverts commit 11b2915db557393144d48f82057754388cfc2ab9. --- .github/workflows/summary.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .github/workflows/summary.yml diff --git a/.github/workflows/summary.yml b/.github/workflows/summary.yml deleted file mode 100644 index 9b07bb8f..00000000 --- a/.github/workflows/summary.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Summarize new issues - -on: - issues: - types: [opened] - -jobs: - summary: - runs-on: ubuntu-latest - permissions: - issues: write - models: read - contents: read - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Run AI inference - id: inference - uses: actions/ai-inference@v1 - with: - prompt: | - Summarize the following GitHub issue in one paragraph: - Title: ${{ github.event.issue.title }} - Body: ${{ github.event.issue.body }} - - - name: Comment with AI summary - run: | - gh issue comment $ISSUE_NUMBER --body '${{ steps.inference.outputs.response }}' - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - ISSUE_NUMBER: ${{ github.event.issue.number }} - RESPONSE: ${{ steps.inference.outputs.response }}