From a194f9e1051ffd6a0b2cb764d7dee56c3fdcb0b1 Mon Sep 17 00:00:00 2001 From: httpdss <39445+httpdss@users.noreply.github.com> Date: Tue, 12 May 2026 03:30:55 +0000 Subject: [PATCH 1/2] Run StructKit generate on repository --- .github/workflows/z-major-tagging.yaml | 14 +++++++++++++ .github/workflows/z-release-drafter.yaml | 26 ++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .github/workflows/z-major-tagging.yaml create mode 100644 .github/workflows/z-release-drafter.yaml diff --git a/.github/workflows/z-major-tagging.yaml b/.github/workflows/z-major-tagging.yaml new file mode 100644 index 0000000..8d987bd --- /dev/null +++ b/.github/workflows/z-major-tagging.yaml @@ -0,0 +1,14 @@ +name: z-major-tagging + +on: + push: + tags: + - v** # Trigger on every tag push + +jobs: + tag: + name: Move major tag + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6.0.2 + - uses: phwt/major-tagging-action@v1 diff --git a/.github/workflows/z-release-drafter.yaml b/.github/workflows/z-release-drafter.yaml new file mode 100644 index 0000000..8e933a5 --- /dev/null +++ b/.github/workflows/z-release-drafter.yaml @@ -0,0 +1,26 @@ +name: z-release-drafter + +on: + push: + branches: + - master + +jobs: + update_release_draft: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + steps: + - name: Checkout + uses: actions/checkout@v6.0.2 + with: + fetch-depth: 0 + - uses: release-drafter/release-drafter@v7.3.0 + id: release-drafter + with: + config-name: release-drafter.yml + publish: false + prerelease: false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 867452d0cb09c4415a4b3b4e121ed289e6e0486d Mon Sep 17 00:00:00 2001 From: Kenneth Belitzky Date: Tue, 12 May 2026 03:42:01 +0000 Subject: [PATCH 2/2] Remove major tagging and release drafter workflows --- .github/workflows/major-tagging.yaml | 14 -------------- .github/workflows/release-drafter.yaml | 26 -------------------------- 2 files changed, 40 deletions(-) delete mode 100644 .github/workflows/major-tagging.yaml delete mode 100644 .github/workflows/release-drafter.yaml diff --git a/.github/workflows/major-tagging.yaml b/.github/workflows/major-tagging.yaml deleted file mode 100644 index 92db252..0000000 --- a/.github/workflows/major-tagging.yaml +++ /dev/null @@ -1,14 +0,0 @@ -name: major-tagging - -on: - push: - tags: - - v** # Trigger on every tag push - -jobs: - tag: - name: Move major tag - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v6.0.2 - - uses: phwt/major-tagging-action@v1 diff --git a/.github/workflows/release-drafter.yaml b/.github/workflows/release-drafter.yaml deleted file mode 100644 index 433afa3..0000000 --- a/.github/workflows/release-drafter.yaml +++ /dev/null @@ -1,26 +0,0 @@ -name: release-drafter - -on: - push: - branches: - - master - -jobs: - update_release_draft: - runs-on: ubuntu-latest - permissions: - contents: write - pull-requests: write - steps: - - name: Checkout - uses: actions/checkout@v6.0.2 - with: - fetch-depth: 0 - - uses: release-drafter/release-drafter@v7.2.1 - id: release-drafter - with: - config-name: release-drafter.yml - publish: false - prerelease: false - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}