Skip to content

Commit 8972869

Browse files
committed
Add mise up workflow
1 parent b9ef11d commit 8972869

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

.github/workflows/mise-up.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: mise up
2+
on:
3+
schedule:
4+
- cron: "0 0 * * 1" # every week
5+
workflow_dispatch:
6+
jobs:
7+
create-token:
8+
runs-on: ubuntu-latest
9+
outputs:
10+
token: ${{ steps.app-token.outputs.token }}
11+
steps:
12+
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
13+
id: app-token
14+
with:
15+
app-id: ${{ vars.GH_APP_ID }}
16+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
17+
mise-up:
18+
needs: create-token
19+
uses: mono0x/workflows/.github/workflows/mise-up.yml@e0b675c2f6b5c10346424a41948f667e45692cc1 # main
20+
secrets:
21+
token: ${{ needs.create-token.outputs.token }}
22+
with:
23+
tools: "npm:pnpm npm:wrangler"
24+
mise-version: "2025.11.8"

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[tools]
22
deno = "2.5"
33

4-
"github:goss-org/goss" = "latest"
4+
"github:goss-org/goss" = "0.4.9"

0 commit comments

Comments
 (0)