Skip to content

Commit 10637a8

Browse files
Maintain/v0.2.1
1 parent ded84d3 commit 10637a8

3 files changed

Lines changed: 31 additions & 8 deletions

File tree

.github/workflows/Dependabot.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ concurrency:
55
cancel-in-progress: true
66

77
permissions:
8+
security-events: write
89
contents: write
910
pull-requests: write
1011

1112
on:
13+
workflow_dispatch:
1214
pull_request:
1315

1416
jobs:
1517
Approve:
1618
runs-on: ubuntu-latest
1719

18-
if:
19-
${{ github.actor == 'dependabot[bot]' &&
20-
github.event.pull_request.user.login == 'dependabot[bot]' }}
20+
if: ${{ github.actor == 'dependabot[bot]' }}
2121

2222
steps:
2323
- uses: dependabot/fetch-metadata@v3.1.0
@@ -31,11 +31,8 @@ jobs:
3131

3232
Merge:
3333
runs-on: ubuntu-latest
34-
needs: Approve
3534

36-
if:
37-
${{ github.actor == 'dependabot[bot]' &&
38-
github.event.pull_request.user.login == 'dependabot[bot]' }}
35+
if: ${{ github.actor == 'dependabot[bot]' }}
3936

4037
steps:
4138
- uses: dependabot/fetch-metadata@v3.1.0

.github/workflows/Node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
steps:
6262
- uses: actions/checkout@v6.0.2
6363

64-
- uses: pnpm/action-setup@v6.0.8
64+
- uses: pnpm/action-setup@v6.0.7
6565
with:
6666
version: 9.3.0
6767
run_install: |

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
## 0.2.1
22

3+
### Add
4+
5+
- Registered `Auto.yml` in `Source/Variable/GitHub.ts` so `Maintain Workflow`
6+
now syncs it to all discovered repos
7+
8+
### Change
9+
10+
- Updated dependencies:
11+
- Bump `@types/node` from 25.7.0 to 25.9.1
12+
- Add `esbuild` 0.28.0 as a dev dependency
13+
- Updated GitHub Actions versions across workflow files:
14+
- Bump `ad-m/github-push-action` from v1.1.0 to v1.3.0 in `Auto.yml`
15+
- Bump `github/codeql-action/init` from v4.35.4 to v4.36.0 in `codeql.yml`
16+
- Bump `github/codeql-action/analyze` from v4.35.4 to v4.36.0 in
17+
`codeql.yml`
18+
- Bump `pnpm/action-setup` from v6.0.7 to v6.0.8 in `codeql.yml` and
19+
`Node.yml`
20+
- Bump `cloudflare/wrangler-action` from v3.15.0 to v4.0.0 in `Version.yml`
21+
- Fixed Dependabot auto-approve workflow (`InnerDependabot.yml`) to use
22+
`secrets.GITHUB_TOKEN` instead of `secrets.DEPENDABOT_TOKEN`, and tightened
23+
the job condition to also check `github.event.pull_request.user.login`
24+
- Improved `Update.sh`:
25+
- Scoped `find` to skip `node_modules`, `vendor`, `dist`, `target`, `.git`,
26+
`.next`, and `.venv` instead of scanning all files from the project root
27+
- Prefixed all shell commands with `\` to bypass aliases
28+
329
## 0.2.0
430

531
### Change

0 commit comments

Comments
 (0)