Skip to content

Commit

Permalink
chore: create asset list workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tnyo43 committed Jul 7, 2024
1 parent 1957af3 commit 9685a29
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/create-asset-list.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Create asset list

on: push

jobs:
create-asset-list:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: curl https://api.github.com/repos/tnyo43/i18n-locale-lint/releases/tags/v0.3.3 | jq 'reduce .assets.[] as $item ({}; .[$item.name] = $item.url)' > scripts/assets.json
- uses: peter-evans/create-pull-request@v6
with:
body: |
test
branch: update-asset-list
commit-message: "chore: update asset list"
draft: true
title: "chore: update asset list"

0 comments on commit 9685a29

Please sign in to comment.