/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/version_bump.ts
88 строк
2 KB
Bartek Iwańczuk
chore: allow alpha/beta version bumps and auto-flag prereleases (#35916)
09 июл 2026, 23:29
Не верифицирован
09 июл 2026, 23:29
7e89f80
Код
Авторство
О чём код?
#!/usr/bin/env -S deno run --check --allow-write=. --allow-read=. --lock=./tools/deno.lock.json // Copyright 2018-2026 the Deno authors. MIT license. import { createWorkflow, step } from "jsr:@david/gagen@0.3.1"; const workflow = createWorkflow({ name: "version_bump", on: { workflow_dispatch: { inputs: { releaseKind: { description: "Kind of version bump", default: "patch", type: "choice", options: ["patch", "minor", "major", "rc", "alpha", "beta"], required: true, }, }, }, }, jobs: [{ id: "build", name: "version bump", runsOn: "ubuntu-24.04", timeoutMinutes: 90, env: { CARGO_TERM_COLOR: "always", RUST_BACKTRACE: "full", RUSTC_FORCE_INCREMENTAL: 1, }, steps: [ step({ name: "Configure git", run: [ "git config --global core.symlinks true", "git config --global fetch.parallel 32", ], }), step({ name: "Clone repository", uses: "actions/checkout@v6", with: { token: "${{ secrets.DENOBOT_PAT }}", submodules: "recursive", }, }), step({ uses: "dsherret/rust-toolchain-file@v1" }), step({ name: "Install deno", uses: "denoland/setup-deno@v2", with: { "deno-version": "v2.x" }, }), step({ name: "Run version bump", run: [ "git remote add upstream https://github.com/denoland/deno", "./tools/release/01_bump_crate_versions.ts --${{github.event.inputs.releaseKind}}", ], }), step({ name: "Create PR", env: { GITHUB_TOKEN: "${{ secrets.DENOBOT_PAT }}", GH_WORKFLOW_ACTOR: "${{ github.actor }}", }, run: [ 'git config user.email "${{ github.actor }}@users.noreply.github.com"', 'git config user.name "${{ github.actor }}"', "./tools/release/02_create_pr.ts", ], }), ], }], }); const header = "# GENERATED BY ./version_bump.ts -- DO NOT DIRECTLY EDIT"; export function generate() { return workflow.toYamlString({ header }); } export const VERSION_BUMP_YML_URL = new URL( "./version_bump.generated.yml", import.meta.url, ); if (import.meta.main) { workflow.writeOrLint({ filePath: VERSION_BUMP_YML_URL, header }); }