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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ updates:
directory: "/"
schedule:
interval: "monthly"
cooldown:
default-days: 7
2 changes: 1 addition & 1 deletion .github/workflows/add-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
issues:
types:
- opened
pull_request_target:
pull_request_target: # zizmor: ignore[dangerous-triggers]
types:
- opened

Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,23 @@ on:
tags:
- v[0-9]+.[0-9]+.[0-9]+*

permissions:
id-token: write
contents: read
permissions: {}

jobs:
docs:
runs-on: ubuntu-latest
environment: docs-publish
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # tag: v6.0.2
with:
persist-credentials: false
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # tag: v6.2.0
with:
node-version: 22.12.x
cache: 'yarn'
package-manager-cache: false
- name: Install dependencies
run: yarn --immutable
- name: Build API documentation
Expand All @@ -32,5 +35,5 @@ jobs:
- name: Upload to Azure Blob Storage
uses: azure/cli@9f7ce6f37c31b777ec6c6b6d1dfe7db79f497956 # tag: v2.2.0
with:
inlineScript: |
inlineScript: | # zizmor: ignore[template-injection] This only runs on tags
az storage blob upload-batch --account-name ${{ secrets.AZURE_ECOSYSTEM_PACKAGES_STORAGE_ACCOUNT_NAME }} -d '$web/get/${{ github.ref_name }}' -s ./docs --overwrite --auth-mode login
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ on:
branches:
- main

permissions: {}

jobs:
test:
permissions:
contents: read
uses: ./.github/workflows/test.yml

release:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ on:
- cron: '0 22 * * 3'
workflow_call:

permissions:
contents: read
permissions: {}

jobs:
test:
Expand All @@ -23,10 +22,14 @@ jobs:
- ubuntu-latest
- windows-latest
runs-on: "${{ matrix.os }}"
permissions:
contents: read
steps:
- run: git config --global core.autocrlf input
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
Expand Down