Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/branch-pr-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,19 @@ on:
pull_request:
branches:
- main

permissions:
contents: read

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v5
Expand All @@ -22,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
python-version: "3.13"
- name: Setup NPM
run: |
npm install
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ on:
release:
types: [published]

permissions:
contents: read

jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/template-schema-updater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ on:
schedule:
- cron: '0 */8 * * *'
workflow_dispatch: # Enables on-demand/manual triggering: https://docs.github.com/en/free-pro-team@latest/actions/managing-workflow-runs/manually-running-a-workflow

permissions:
contents: read

jobs:
schema-updater:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v5
Expand All @@ -15,7 +22,7 @@ jobs:
ref: main
- uses: actions/setup-python@v6
with:
python-version: '3.9'
python-version: '3.13'
- name: Install Poetry
uses: snok/install-poetry@v1
- run: |
Expand Down