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
Empty file added .git-blame-ignore-revs
Empty file.
6 changes: 2 additions & 4 deletions .github/workflows/devskim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,11 @@ jobs:
lint:
name: DevSkim
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Run DevSkim scanner
uses: microsoft/DevSkim-Action@v1
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup .NET environment
uses: actions/setup-dotnet@v4
Expand All @@ -45,6 +47,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup dotnet
uses: actions/setup-dotnet@v4
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/elixir-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: ['main']
pull_request:
types: [opened, reopened, synchronize, assigned, review_requested]
types: [opened, synchronize]
paths:
- 'sdk/highlight-ex/**'
- '.github/workflows/elixir-sdk.yml'
Expand All @@ -21,6 +21,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
Expand All @@ -36,6 +38,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
Expand All @@ -56,6 +60,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/go-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: ['main']
pull_request:
types: [opened, reopened, synchronize, assigned, review_requested]
types: [opened, synchronize]
paths:
- 'sdk/highlight-go/**'
- '.github/workflows/go-sdk.yml'
Expand All @@ -17,6 +17,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Go
uses: actions/setup-go@v5
with:
Expand All @@ -34,6 +36,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Go
uses: actions/setup-go@v5
with:
Expand All @@ -52,6 +56,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Go
uses: actions/setup-go@v5
with:
Expand All @@ -67,6 +73,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Go
uses: actions/setup-go@v5
with:
Expand Down
13 changes: 5 additions & 8 deletions .github/workflows/java-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,11 @@ on:
branches: ['main']
tags: ['sdk/highlight-java/**']
pull_request:
types: [opened, reopened, synchronize, assigned, review_requested]
types: [opened, synchronize]
paths:
- 'sdk/highlight-java/**'
- '.github/workflows/java-sdk.yml'

permissions:
checks: write

defaults:
run:
working-directory: ./sdk/highlight-java
Expand All @@ -43,7 +40,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Deployment running
id: deploy
Expand Down Expand Up @@ -104,7 +101,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down Expand Up @@ -135,7 +132,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down Expand Up @@ -172,7 +169,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up JDK 17
uses: actions/setup-java@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
working-directory: ./sdk/highlight-py
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
Expand Down Expand Up @@ -60,6 +62,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v4
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.3']
ruby: ['3.1', '3.3']
defaults:
run:
working-directory: ./sdk/highlight-ruby/highlight
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: dorny/paths-filter@v2
id: filter
with:
Expand Down Expand Up @@ -58,6 +60,8 @@ jobs:
working-directory: ./e2e/ruby/rails/demo
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -77,6 +81,8 @@ jobs:
working-directory: ./e2e/ruby/rails/api-only
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/rust-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ on:
push:
branches: ['main']
pull_request:
types: [opened, reopened, synchronize, assigned, review_requested]
types: [opened, synchronize]
paths:
- 'sdk/highlight-rust/**'
- '.github/workflows/rust-sdk.yml'

permissions:
checks: write

defaults:
run:
working-directory: ./sdk/highlight-rust
Expand All @@ -29,7 +26,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -53,7 +50,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/turbo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
with:
token: ${{ secrets.SUBMODULE_PAT }}
submodules: recursive
fetch-depth: 0

# automatically caches dependencies based on yarn.lock
- name: Setup Node.js environment
Expand Down
Loading