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: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint GitHub Actions workflows
name: Lint

on:
pull_request:
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/assign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Manage PR Assignee

on:
pull_request:
types:
- opened

permissions:
pull-requests: write
repository-projects: read

jobs:
assign:
runs-on: ubuntu-latest

if: endsWith(github.actor, '[bot]') == false && github.event.pull_request.assignee == null

steps:
- name: Add assignees
run: gh pr edit ${{ github.event.number }} --add-assignee ${{ github.actor }}
env:
GH_TOKEN: ${{ github.token }}
GH_REPO: ${{ github.repository }}
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ jobs:
uses: ./.github/actions/setup-python-with-uv

- name: Run pytest
run: |
uv run nox -s test -- --cov_report xml --junitxml junit.xml
run: uv run nox -s test -- --cov_report xml --junitxml junit.xml

- name: Upload test results to Codecov
uses: codecov/test-results-action@v1
Expand Down
6 changes: 3 additions & 3 deletions codecov.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ component_management:
- component_id: config
name: config
paths:
- tools/config/**/*.py
- tools/config/**
- component_id: logger
name: logger
paths:
- tools/logger/**/*.py
- tools/logger/**
- component_id: tracer
name: tracer
paths:
- tools/tracer/**/*.py
- tools/tracer/**

coverage:
precision: 2
Expand Down
Loading