Skip to content

Commit 91dc12d

Browse files
committed
Update Cookiecutter
1 parent a8a6753 commit 91dc12d

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.ci/run_container.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export PULP_CONTENT_ORIGIN
7272
"${CONTAINER_RUNTIME}" \
7373
run ${RM:+--rm} \
7474
--env S6_KEEP_ENV=1 \
75+
${OAS_VERSION:+--env PULP_SPECTACULAR_SETTINGS__OAS_VERSION="${OAS_VERSION}"} \
7576
${PULP_HTTPS:+--env PULP_HTTPS} \
7677
${PULP_OAUTH2:+--env PULP_OAUTH2} \
7778
${PULP_API_ROOT:+--env PULP_API_ROOT} \

.github/dependabot.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1+
---
12
version: 2
23
updates:
3-
- package-ecosystem: pip
4+
- package-ecosystem: "pip"
45
directory: "/"
56
schedule:
6-
interval: daily
7+
interval: "daily"
78
commit-message:
89
prefix: "[PIP] "
910
open-pull-requests-limit: 10
10-
- package-ecosystem: pip
11+
- package-ecosystem: "pip"
1112
directory: "/pulp-glue-ostree"
1213
schedule:
13-
interval: daily
14+
interval: "daily"
1415
commit-message:
1516
prefix: "[PIP] "
1617
open-pull-requests-limit: 10
17-
- package-ecosystem: github-actions
18+
- package-ecosystem: "github-actions"
1819
directory: "/"
1920
schedule:
20-
interval: weekly
21+
interval: "weekly"
2122
commit-message:
2223
prefix: "[GHA] "
2324
open-pull-requests-limit: 10
25+
...

.github/workflows/release_branch.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
runs-on: "ubuntu-latest"
99
steps:
1010
- uses: "actions/checkout@v4"
11+
with:
12+
token: "${{ secrets.RELEASE_TOKEN }}"
1113
- name: "Set up Python"
1214
uses: "actions/setup-python@v5"
1315
with:

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
PULP_HTTPS: "${{ matrix.pulp_https }}"
7878
PULP_OAUTH2: "${{ matrix.pulp_oauth2 }}"
7979
PULP_API_ROOT: "${{ matrix.pulp_api_root }}"
80+
OAS_VERSION: "${{ matrix.oas_version }}"
8081
run: |
8182
.ci/run_container.sh make test
8283
...

lint_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Lint requirements
22
black==25.1.0
3-
flake8==7.1.1
3+
flake8==7.1.2
44
flake8-pyproject==1.2.3
55
isort==6.0.0
66
mypy==1.15.0

0 commit comments

Comments
 (0)