git2py 0.0.6__tar.gz → 0.0.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {git2py-0.0.6 → git2py-0.0.7}/.github/workflows/ci.yml +14 -0
- {git2py-0.0.6 → git2py-0.0.7}/PKG-INFO +1 -1
- {git2py-0.0.6 → git2py-0.0.7}/pyproject.toml +1 -1
- {git2py-0.0.6 → git2py-0.0.7}/.gitattributes +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/.gitignore +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/LICENSE +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/README.md +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/docsrc/.gitignore +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/docsrc/Makefile +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/docsrc/conf.py +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/docsrc/index.rst +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/docsrc/make.bat +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/git2py/__init__.py +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/git2py/gitlab_utils.py +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/git2py/migration.py +0 -0
- {git2py-0.0.6 → git2py-0.0.7}/tests/test_smoke.py +0 -0
|
@@ -8,9 +8,23 @@
|
|
|
8
8
|
# a release-sensitive repo, change `@master` to a wads tag (e.g. `@v0.1.81`).
|
|
9
9
|
# CI failure does not block a published release — it blocks the publish
|
|
10
10
|
# step itself — so floating master is generally safe.
|
|
11
|
+
#
|
|
12
|
+
# Permissions: GitHub validates that the caller grants AT LEAST the
|
|
13
|
+
# permissions any job in the called workflow requests — at workflow-parse
|
|
14
|
+
# time, not at run-time, even if the job would be skipped via `if:`.
|
|
15
|
+
# The reusable workflow needs:
|
|
16
|
+
# contents: write for the publish job's version-bump push-back
|
|
17
|
+
# pages: write for the github-pages publish (if enabled)
|
|
18
|
+
# id-token: write for the github-pages OIDC handshake (if enabled)
|
|
19
|
+
# Granting these in the stub keeps it working on any caller, including
|
|
20
|
+
# personal-account repos where id-token is not write-by-default.
|
|
11
21
|
name: Continuous Integration
|
|
12
22
|
on: [push, pull_request]
|
|
13
23
|
jobs:
|
|
14
24
|
ci:
|
|
15
25
|
uses: i2mint/wads/.github/workflows/uv-ci.yml@master
|
|
26
|
+
permissions:
|
|
27
|
+
contents: write
|
|
28
|
+
pages: write
|
|
29
|
+
id-token: write
|
|
16
30
|
secrets: inherit
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|