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
6 changes: 6 additions & 0 deletions .github/assignment_configuration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
addReviewers: true
addAssignees: author
reviewers:
- forstmeier
- chrisaddy
Comment thread
forstmeier marked this conversation as resolved.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ updates:
directory: /
schedule:
interval: cron
cronjob: 0 8 * * *
cronjob: 0 8 * * MON
timezone: America/New_York
- package-ecosystem: cargo
directory: /
schedule:
interval: cron
cronjob: 0 8 * * *
cronjob: 0 8 * * MON
timezone: America/New_York
25 changes: 25 additions & 0 deletions .github/label_configuration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
markdown:
- changed-files:
- any-glob-to-any-file:
- "**/*.md"

python:
- changed-files:
- any-glob-to-any-file:
- "**/*.py"
- "**/pyproject.toml"
- "**/uv.lock"

rust:
- changed-files:
- any-glob-to-any-file:
- "**/*.rs"
- "**/Cargo.toml"
- "**/Cargo.lock"

yaml:
- changed-files:
- any-glob-to-any-file:
- "**/*.yml"
- "**/*.yaml"
Comment thread
forstmeier marked this conversation as resolved.
Comment thread
forstmeier marked this conversation as resolved.
20 changes: 20 additions & 0 deletions .github/workflows/assign_pull_request_reviewers.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Assign pull request reviewers
run-name: Assign pull request reviewers
on:
pull_request:
Comment thread
forstmeier marked this conversation as resolved.
types:
- opened
jobs:
assign_pull_request_reviewers:
name: Assign pull request reviewers
runs-on: ubuntu-latest
Comment thread
forstmeier marked this conversation as resolved.
permissions:
contents: read
pull-requests: write
Comment thread
forstmeier marked this conversation as resolved.
steps:
- name: Assign pull request reviewers and assignees
uses: kentaro-m/auto-assign-action@v2.0.1
Comment thread
forstmeier marked this conversation as resolved.
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/assignment_configuration.yaml
22 changes: 22 additions & 0 deletions .github/workflows/label_pull_requests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Label pull requests
run-name: Label pull requests
on:
pull_request:
Comment thread
forstmeier marked this conversation as resolved.
Comment thread
forstmeier marked this conversation as resolved.
types:
- opened
- synchronize
- reopened
jobs:
label_pull_request:
name: Label pull request
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Label pull request
uses: actions/labeler@v5
Comment thread
forstmeier marked this conversation as resolved.
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Comment thread
forstmeier marked this conversation as resolved.
Comment thread
forstmeier marked this conversation as resolved.
configuration-path: .github/label_configuration.yaml
4 changes: 2 additions & 2 deletions .github/workflows/run_code_checks.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Code checks
run-name: Code checks
name: Run code checks
run-name: Run code checks
on:
pull_request:
# Allows for Rust cache to be established on master branch
Expand Down
Loading