プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

[studio] Add GitHub Action

Kohei Watanabe (Mar 17, 2024, 6:15 AM +0900) e9b42a86 ef737c75

+26
+26
.github/workflows/_studio.yml
··· 1 + name: Astro Studio 2 + 3 + env: 4 + ASTRO_STUDIO_APP_TOKEN: ${{secrets.ASTRO_STUDIO_APP_TOKEN }} 5 + 6 + on: 7 + push: 8 + branches: 9 + - main 10 + pull_request: 11 + types: [opened, reopened, synchronize] 12 + 13 + jobs: 14 + DB: 15 + permissions: 16 + contents: read 17 + actions: read 18 + pull-requests: write 19 + runs-on: ubuntu-latest 20 + steps: 21 + - uses: actions/checkout@v4 22 + - uses: actions/setup-node@v4 23 + with: 24 + node-version: 20 25 + - uses: jaid/action-npm-install@v1.2.1 26 + - uses: withastro/action-studio@main