Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: hasundue/molt-action
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.0
Choose a base ref
...
head repository: hasundue/molt-action
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 13 commits
  • 9 files changed
  • 2 contributors

Commits on Aug 3, 2024

  1. Copy the full SHA
    e780aa3 View commit details
  2. doc: remove -rc in usage

    hasundue committed Aug 3, 2024

    Verified

    This commit was created on github.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5617c11 View commit details
  3. chore: release v1.0.1

    hasundue committed Aug 3, 2024
    Copy the full SHA
    0c144e6 View commit details

Commits on Aug 7, 2024

  1. Copy the full SHA
    6c1ee40 View commit details
  2. Copy the full SHA
    c38d8c9 View commit details
  3. chore: release 1.0.2

    hasundue committed Aug 7, 2024
    Copy the full SHA
    2042116 View commit details
  4. Copy the full SHA
    a99059a View commit details
  5. Copy the full SHA
    04bd813 View commit details
  6. Copy the full SHA
    4395c50 View commit details
  7. Copy the full SHA
    92e56ad View commit details
  8. chore: bump @std/semver from 0.224.3 to 1.0.1

    hasundue committed Aug 7, 2024
    Copy the full SHA
    386bd4d View commit details
  9. ci: create update workflow

    hasundue committed Aug 7, 2024
    Copy the full SHA
    5d0d083 View commit details

Commits on Oct 24, 2024

  1. chore: bump denoland/setup-deno from v1 to v2

    injust authored and hasundue committed Oct 24, 2024
    Copy the full SHA
    627287e View commit details
Showing with 171 additions and 22 deletions.
  1. +4 −4 .github/workflows/test.yml
  2. +19 −0 .github/workflows/update.yml
  3. +1 −1 README.md
  4. +3 −3 action.yml
  5. +6 −5 deno.json
  6. +47 −9 deno.lock
  7. +3 −0 src/report.ts
  8. +52 −0 src/report_test.ts
  9. +36 −0 tools/bump.ts
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.x

@@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.x

@@ -50,7 +50,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.x

@@ -75,7 +75,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.x

19 changes: 19 additions & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: update

on:
schedule:
- cron: '0 23 * * *'
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: hasundue/molt-action@v1
with:
token: ${{ secrets.PAT_UPDATE }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: hasundue/molt-action@v1-rc
- uses: hasundue/molt-action@v1
with:
# optional inputs
```
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ inputs:

cache-key-suffix:
description: Suffix for the cache key (development purposes only).
default: 1.0.0
default: 1.0.2

commit:
description: Whether to commit changes locally.
@@ -73,7 +73,7 @@ inputs:
script:
description: >
Specifier for the main script to run (development purposes only).
default: jsr:@molt/action@1.0.0
default: jsr:@molt/action@1.0.2

source:
description: >
@@ -118,7 +118,7 @@ runs:

steps:
- name: Setup Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: v1.43

11 changes: 6 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@molt/action",
"version": "1.0.0",
"version": "1.0.2",
"exports": "./src/main.ts",
"publish": {
"include": [
@@ -16,25 +16,26 @@
"@actions/core": "npm:@actions/core@^1.10.1",
"@actions/github": "npm:@actions/github@^6.0.0",
"@core/match": "jsr:@core/match@^0.3.1",
"@core/unknownutil": "jsr:@core/unknownutil@^3.18.1",
"@molt/core": "jsr:@molt/core@^0.19.1",
"@core/unknownutil": "jsr:@core/unknownutil@^4.0.0",
"@molt/core": "jsr:@molt/core@^0.19.8",
"@molt/integration": "jsr:@molt/integration@^0.19.0",
"@molt/lib": "jsr:@molt/lib@^0.19.0",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/collections": "jsr:@std/collections@^1.0.0",
"@std/fs": "jsr:@std/fs@^1.0.0",
"@std/jsonc": "jsr:@std/jsonc@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/semver": "jsr:@std/semver@^0.224.3",
"@std/semver": "jsr:@std/semver@^1.0.0",
"dedent": "npm:dedent@^1.5.3"
},
"tasks": {
"act": "act -j integration",
"bump": "deno run --allow-read=. --allow-write=./deno.json,./action.yml --allow-run=git ./tools/bump.ts",
"cache": "deno cache ./src/*.ts",
"check": "deno check **/*.ts",
"pre-commit": "deno fmt && deno lint && deno task check && deno task test",
"test": "deno test --allow-env --allow-read --allow-write=. --allow-net --allow-run=deno --env --no-check --unstable-kv",
"update": "deno run --unstable-kv --allow-env --allow-read --allow-write --allow-net --allow-run=git,deno jsr:@molt/cli@0.19.0",
"update": "deno run --unstable-kv --allow-env --allow-read --allow-write --allow-net --allow-run=git,deno jsr:@molt/cli",
"update:commit": "deno task -q update --commit --pre-commit=check,test --prefix 'chore:'"
}
}
56 changes: 47 additions & 9 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/report.ts
Original file line number Diff line number Diff line change
@@ -49,6 +49,9 @@ export function _version(
if (!version) {
return "";
}
if (!SemVer.tryParse(version)) {
return version;
}
switch (kind) {
case "jsr":
return `[${version}](https://jsr.io/${name}/${version})`;
52 changes: 52 additions & 0 deletions src/report_test.ts
Original file line number Diff line number Diff line change
@@ -46,6 +46,20 @@ Deno.test("_version - https", () => {
);
});

Deno.test("_version - constraint", () => {
assertEquals(
_version(
{
specifier: "jsr:@molt/core",
kind: "jsr",
name: "@molt/core",
},
"^1.0.0",
),
"^1.0.0",
);
});

Deno.test("_header - with a single from", () => {
assertEquals(
_header(
@@ -84,6 +98,25 @@ Deno.test("_header - with multiple froms", () => {
);
});

Deno.test("_header - constraints", () => {
assertEquals(
_header(
{
dep: {
specifier: "jsr:@molt/core",
kind: "jsr",
name: "@molt/core",
},
constraint: {
from: "^0.18.0",
to: "^1.0.0",
},
},
),
"#### :package: @molt/core ^0.18.0 → ^1.0.0",
);
});

Deno.test("_changelog - non-package", async () => {
assertEquals(
await _changelog(
@@ -127,6 +160,25 @@ Deno.test("_changelog - jsr:@molt/core", async () => {
);
});

Deno.test("_changelog - jsr:@core/unknownutil", async () => {
assertEquals(
await _changelog(
{
dep: {
specifier: "jsr:@core/unknownutil",
kind: "jsr",
name: "@core/unknownutil",
},
lock: {
from: "3.18.0",
to: "3.18.1",
},
},
),
"", // the repository uses gitmoji, which is not supported yet
);
});

Deno.test("createReport - empty result", async () => {
assertEquals(
await createReport([]),
36 changes: 36 additions & 0 deletions tools/bump.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import { format, increment, parse, type ReleaseType } from "@std/semver";

const type = Deno.args.at(0) as ReleaseType;
if (!type) throw new Error("Missing release type argument");

const { default: config } = await import("../deno.json", {
with: { type: "json" },
});

const bumped = format(increment(parse(config.version), type));

config.version = bumped;
await Deno.writeTextFile("deno.json", JSON.stringify(config, null, 2) + "\n");

const yaml = await Deno.readTextFile("./action.yml");

const updated = yaml
.replace(/default: \d+\.\d+\.\d+/, `default: ${bumped}`)
.replace(
/default: jsr:@molt\/action@\d+\.\d+\.\d+/,
`default: jsr:@molt\/action@${bumped}`,
);

await Deno.writeTextFile("./action.yml", updated);

await new Deno.Command("git", {
args: [
"commit",
"-m",
`chore: release ${bumped}`,
"action.yml",
"deno.json",
],
stdout: "inherit",
stderr: "inherit",
}).output();