1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-02-04 16:18:41 +00:00

Compare commits

...

4 commits

Author SHA1 Message Date
dependabot[bot]
b81bf4821a
Merge e2bdca916e into 962b721a24 2023-10-30 09:44:59 +00:00
962b721a24
create update-empty-branch 2023-10-30 17:44:00 +09:00
24ac4ed7b1
create update-latest-release action 2023-10-30 16:40:54 +09:00
dependabot[bot]
e2bdca916e
Bump minimist from 1.2.5 to 1.2.8 in /vad
Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8.
- [Release notes](https://github.com/minimistjs/minimist/releases)
- [Changelog](https://github.com/minimistjs/minimist/blob/main/CHANGELOG.md)
- [Commits](https://github.com/minimistjs/minimist/compare/v1.2.5...v1.2.8)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-05 06:53:50 +00:00
3 changed files with 50 additions and 3 deletions

View file

@ -0,0 +1,18 @@
name: update-empty-branch
on:
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: |
git worktree add --track -b empty empty origin/empty
rm -rf empty/*
git config user.name bot
git config user.email '<>'
git -C empty add --all
git -C empty commit --allow-empty --message "based on $(git rev-parse @)"
git -C empty push origin empty

View file

@ -0,0 +1,29 @@
name: update-latest-release
on:
workflow_dispatch:
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo ok > hello.txt
# - uses: actions/github-script@v6
# with:
# script: |
# const { data: release } = await github.rest.repos.getLatestRelease(context.repo);
# const name = "hello.txt";
# const data = await require("node:fs").promises.readFile(name);
# await github.rest.repos.uploadReleaseAsset({
# ...context.repo,
# release_id: release.id,
# name,
# data,
# });
- run: |
latest=$(gh release view --json tagName --jq .tagName)
gh release delete-asset "${latest}" hello.txt || :
gh release upload "${latest}" hello.txt
env:
GH_TOKEN: ${{ github.token }}

View file

@ -3159,9 +3159,9 @@ minimatch@^3.0.4:
brace-expansion "^1.1.7" brace-expansion "^1.1.7"
minimist@^1.2.0, minimist@^1.2.5: minimist@^1.2.0, minimist@^1.2.5:
version "1.2.5" version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
minipass-collect@^1.0.2: minipass-collect@^1.0.2:
version "1.0.2" version "1.0.2"