Skip to content

Commit 2baa71f

Browse files
authored
Merge pull request #280 from altheaden/cleanup-ci
Add @andrewdnolan as dependabot reviewer and other minor CI changes
2 parents 5338e45 + 171f13d commit 2baa71f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ updates:
99
assignees:
1010
- "xylar"
1111
- "altheaden"
12+
- "andrewdnolan"
1213
reviewers:
1314
- "xylar"
1415
- "altheaden"
16+
- "andrewdnolan"
1517

.github/workflows/build_workflow.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ on:
1212
env:
1313
CANCEL_OTHERS: false
1414
PATHS_IGNORE: '["**/README.md", "**/docs/**"]'
15+
# Static python version for setting up pre-commit linting
16+
PYTHON_VERSION: "3.13"
1517

1618
jobs:
1719
pre-commit-hooks:
@@ -30,10 +32,10 @@ jobs:
3032
uses: actions/checkout@v4
3133

3234
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
33-
name: Set up Python 3.10
35+
name: Set up Python ${{ env.PYTHON_VERSION }}
3436
uses: actions/setup-python@v5
3537
with:
36-
python-version: "3.10"
38+
python-version: ${{ env.PYTHON_VERSION }}
3739

3840
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
3941
id: file_changes

.github/workflows/pre_commit_update_workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
env:
1616
UP_TO_DATE: false
1717
PYTHON_VERSION: "3.10"
18+
REVIEWERS: "altheaden,xylar,andrewdnolan"
1819

1920
jobs:
2021
auto-update:
@@ -78,7 +79,7 @@ jobs:
7879
--title "Update pre-commit and its dependencies" \
7980
--body "This PR was auto-generated to update pre-commit and its dependencies." \
8081
--head update-pre-commit-deps \
81-
--reviewer altheaden,xylar,andrewdnolan \
82+
--reviewer ${{ env.REVIEWERS }} \
8283
--label ci
8384
env:
8485
GH_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)