From 9c693091fdffc817eba1a02b112ccee9de0a0637 Mon Sep 17 00:00:00 2001 From: Donovan Date: Fri, 15 Mar 2024 23:02:14 -0700 Subject: [PATCH 1/2] [studio] Add GitHub Action --- .github/workflows/_studio.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/_studio.yml diff --git a/.github/workflows/_studio.yml b/.github/workflows/_studio.yml new file mode 100644 index 0000000..a1eb508 --- /dev/null +++ b/.github/workflows/_studio.yml @@ -0,0 +1,26 @@ +name: Astro Studio + +env: + ASTRO_STUDIO_APP_TOKEN: ${{secrets.ASTRO_STUDIO_APP_TOKEN }} + +on: + push: + branches: + - main + pull_request: + types: [opened, reopened, synchronize] + +jobs: + DB: + permissions: + contents: read + actions: read + pull-requests: write + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - uses: jaid/action-npm-install@v1.2.1 + - uses: withastro/action-studio@main From ce2214854fd42d851fef2886eafa898d01e5a9e9 Mon Sep 17 00:00:00 2001 From: Donovan Date: Fri, 15 Mar 2024 23:56:42 -0700 Subject: [PATCH 2/2] [studio] Add GitHub Action