From fa33442dc0b6f97d4ae66d5a52d43e9864bb1d98 Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 10:49:33 +0900 Subject: [PATCH 01/11] disable actions --- .github/workflows/build.yml | 4 ++-- .github/workflows/collect-prs.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0e624b..506c0ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,8 +4,8 @@ name: Build on: - push: - branches: [ "main" ] + #push: + # branches: [ "main" ] pull_request: branches: [ "main" ] diff --git a/.github/workflows/collect-prs.yml b/.github/workflows/collect-prs.yml index 8ef195d..a947407 100644 --- a/.github/workflows/collect-prs.yml +++ b/.github/workflows/collect-prs.yml @@ -3,8 +3,8 @@ name: collect dotnet-runtime PRs on: - schedule: - - cron: '0 0 * * *' + #schedule: + # - cron: '0 0 * * *' workflow_dispatch: # Allow manual trigger concurrency: From 965037f13048e18a2a5a14f0d7498f027ecdf408 Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:09:57 +0900 Subject: [PATCH 02/11] fix: push with `GITHUB_TOKEN` won't invoke push event --- .github/workflows/create-release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 69d4bdd..0e410a8 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -6,6 +6,10 @@ on: - main paths: - 'archives/**/*.md' + workflow_run: + workflows: [collect dotnet-runtime PRs] + types: + - completed permissions: contents: write From e43cec0539f4f12546f4ababc49edd943f9c39b3 Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:18:29 +0900 Subject: [PATCH 03/11] fix: push with `GITHUB_TOKEN` won't invoke push event --- .github/workflows/collect-prs.yml | 5 ++++- .github/workflows/create-release.yml | 5 +---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/collect-prs.yml b/.github/workflows/collect-prs.yml index a947407..b7fd0c2 100644 --- a/.github/workflows/collect-prs.yml +++ b/.github/workflows/collect-prs.yml @@ -58,5 +58,8 @@ jobs: id: deployment uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 - + # NOTE: push with GITHUB_TOKEN won't invoke the push event + release: + #needs: deploy + uses: ./.github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 0e410a8..da4e43f 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -6,10 +6,7 @@ on: - main paths: - 'archives/**/*.md' - workflow_run: - workflows: [collect dotnet-runtime PRs] - types: - - completed + workflow_call: permissions: contents: write From 6d767ccbe7968490d1024642f9565e74c40dc6cd Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:21:27 +0900 Subject: [PATCH 04/11] update --- .github/workflows/collect-prs.yml | 6 ------ .github/workflows/create-release.yml | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/collect-prs.yml b/.github/workflows/collect-prs.yml index b7fd0c2..3c2eee2 100644 --- a/.github/workflows/collect-prs.yml +++ b/.github/workflows/collect-prs.yml @@ -57,9 +57,3 @@ jobs: - name: Deploy id: deployment uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 - - # NOTE: push with GITHUB_TOKEN won't invoke the push event - release: - #needs: deploy - uses: ./.github/workflows/create-release.yml - diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index da4e43f..8655cb9 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -6,6 +6,11 @@ on: - main paths: - 'archives/**/*.md' + # NOTE: push with GITHUB_TOKEN won't invoke the push event + workflow_run: + workflows: [collect dotnet-runtime PRs] + types: [completed] + workflow_call: permissions: @@ -13,6 +18,7 @@ permissions: jobs: create-release: + #if: ${{ github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest timeout-minutes: 10 From f46994d6b1419e71c0d93aac3571dd54a0cc3a22 Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:24:57 +0900 Subject: [PATCH 05/11] update 2 --- .github/workflows/collect-prs.yml | 7 +++++++ .github/workflows/create-release.yml | 5 ----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/collect-prs.yml b/.github/workflows/collect-prs.yml index 3c2eee2..b6aae37 100644 --- a/.github/workflows/collect-prs.yml +++ b/.github/workflows/collect-prs.yml @@ -13,6 +13,7 @@ concurrency: jobs: summarize: + continue-on-error: true runs-on: ubuntu-latest permissions: contents: write @@ -44,6 +45,7 @@ jobs: path: ./outputs/ deploy: + continue-on-error: true needs: summarize permissions: contents: read @@ -57,3 +59,8 @@ jobs: - name: Deploy id: deployment uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 + + # NOTE: push with GITHUB_TOKEN won't invoke the push event + release: + needs: deploy + uses: ./.github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 8655cb9..3955930 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -6,11 +6,6 @@ on: - main paths: - 'archives/**/*.md' - # NOTE: push with GITHUB_TOKEN won't invoke the push event - workflow_run: - workflows: [collect dotnet-runtime PRs] - types: [completed] - workflow_call: permissions: From 132a978851c42af0b945758bc8601982e7dcd341 Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:33:00 +0900 Subject: [PATCH 06/11] for test --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 3955930..5a87098 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: - fetch-depth: 2 # For git diff + fetch-depth: 0 # For git diff - name: Generate tag name id: tag From 49748a740b0145f425b55f38ed7ff7b20cf0a86c Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:36:10 +0900 Subject: [PATCH 07/11] for test 2 --- .github/workflows/collect-prs.yml | 3 ++- .github/workflows/create-release.yml | 2 +- archives/0000/01/test.md | 0 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 archives/0000/01/test.md diff --git a/.github/workflows/collect-prs.yml b/.github/workflows/collect-prs.yml index b6aae37..1f0a1c7 100644 --- a/.github/workflows/collect-prs.yml +++ b/.github/workflows/collect-prs.yml @@ -60,7 +60,8 @@ jobs: id: deployment uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 - # NOTE: push with GITHUB_TOKEN won't invoke the push event + # NOTE: push with GITHUB_TOKEN won't invoke the event, + # instead need to directly call the action. release: needs: deploy uses: ./.github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 5a87098..3955930 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 with: - fetch-depth: 0 # For git diff + fetch-depth: 2 # For git diff - name: Generate tag name id: tag diff --git a/archives/0000/01/test.md b/archives/0000/01/test.md new file mode 100644 index 0000000..e69de29 From 4f9425f3e18309b72c2a8a13f88ac5aa4a71a367 Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:38:51 +0900 Subject: [PATCH 08/11] for test 3 --- archives/0000/01/test2.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 archives/0000/01/test2.md diff --git a/archives/0000/01/test2.md b/archives/0000/01/test2.md new file mode 100644 index 0000000..e69de29 From ce5f8deca677f8beebe351cf5c73e6c47b1cab4d Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:39:48 +0900 Subject: [PATCH 09/11] for test 4 --- .github/workflows/create-release.yml | 10 +++++----- archives/0000/01/test3.md | 0 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 archives/0000/01/test3.md diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 3955930..12140ec 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -1,11 +1,11 @@ name: Create Release from archives on: - push: - branches: - - main - paths: - - 'archives/**/*.md' + #push: + # branches: + # - main + # paths: + # - 'archives/**/*.md' workflow_call: permissions: diff --git a/archives/0000/01/test3.md b/archives/0000/01/test3.md new file mode 100644 index 0000000..e69de29 From 0852741b0893246d2f6ccd79beb5ec13d0350d5d Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:52:03 +0900 Subject: [PATCH 10/11] cleanup --- .github/workflows/collect-prs.yml | 8 +++----- .github/workflows/create-release.yml | 11 +++++------ archives/0000/01/test.md | 0 archives/0000/01/test2.md | 0 archives/0000/01/test3.md | 0 5 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 archives/0000/01/test.md delete mode 100644 archives/0000/01/test2.md delete mode 100644 archives/0000/01/test3.md diff --git a/.github/workflows/collect-prs.yml b/.github/workflows/collect-prs.yml index 1f0a1c7..e033bb9 100644 --- a/.github/workflows/collect-prs.yml +++ b/.github/workflows/collect-prs.yml @@ -3,8 +3,8 @@ name: collect dotnet-runtime PRs on: - #schedule: - # - cron: '0 0 * * *' + schedule: + - cron: '0 0 * * *' workflow_dispatch: # Allow manual trigger concurrency: @@ -13,7 +13,6 @@ concurrency: jobs: summarize: - continue-on-error: true runs-on: ubuntu-latest permissions: contents: write @@ -45,7 +44,6 @@ jobs: path: ./outputs/ deploy: - continue-on-error: true needs: summarize permissions: contents: read @@ -61,7 +59,7 @@ jobs: uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5 # NOTE: push with GITHUB_TOKEN won't invoke the event, - # instead need to directly call the action. + # as a workaround, directly call the action. release: needs: deploy uses: ./.github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 12140ec..8861b1e 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -1,19 +1,18 @@ name: Create Release from archives on: - #push: - # branches: - # - main - # paths: - # - 'archives/**/*.md' workflow_call: + push: + branches: + - main + paths: + - 'archives/**/*.md' permissions: contents: write jobs: create-release: - #if: ${{ github.event.workflow_run.conclusion == 'success' }} runs-on: ubuntu-latest timeout-minutes: 10 diff --git a/archives/0000/01/test.md b/archives/0000/01/test.md deleted file mode 100644 index e69de29..0000000 diff --git a/archives/0000/01/test2.md b/archives/0000/01/test2.md deleted file mode 100644 index e69de29..0000000 diff --git a/archives/0000/01/test3.md b/archives/0000/01/test3.md deleted file mode 100644 index e69de29..0000000 From d0224a9ddc0ada2ecd734befd3544a664a328853 Mon Sep 17 00:00:00 2001 From: sator-imaging <16752340+sator-imaging@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:56:42 +0900 Subject: [PATCH 11/11] cleanup 2 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 506c0ad..a0e624b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,8 +4,8 @@ name: Build on: - #push: - # branches: [ "main" ] + push: + branches: [ "main" ] pull_request: branches: [ "main" ]