You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+45-2Lines changed: 45 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -309,7 +309,7 @@ docker run -e INTERLYNK_SECURITY_TOKEN=$INTERLYNK_SECURITY_TOKEN -v $(pwd):/app/
309
309
310
310
## CI/CD Integration
311
311
312
-
PyLynk automatically detects and captures CI/CD environment information when running in GitHub Actions, Bitbucket Pipelines, or other CI environments. This metadata is sent with API requests during **upload operations only** to provide context about the build and deployment pipeline.
312
+
PyLynk automatically detects and captures CI/CD environment information when running in GitHub Actions, Bitbucket Pipelines, Azure DevOps, or other CI environments. This metadata is sent with API requests during **upload operations only** to provide context about the build and deployment pipeline.
313
313
314
314
### Automatic PR and Build Information Extraction
315
315
@@ -390,6 +390,49 @@ pipelines:
390
390
# - Repository information
391
391
```
392
392
393
+
### Azure DevOps Integration
394
+
395
+
In Azure DevOps Pipelines, PyLynk automatically detects and extracts pipeline information:
PyLynk also supports generic CI environments by checking common environment variables. When `CI=true` is set, PyLynk will attempt to extract build and PR information from standard environment variables:
@@ -505,7 +548,7 @@ The extracted CI information is sent as HTTP headers with upload API requests:
505
548
506
549
| Header | Description | Example |
507
550
|--------|-------------|---------|
508
-
| `X-CI-Provider` | CI platform name | `github_actions`, `bitbucket_pipelines`, `generic_ci` |
551
+
| `X-CI-Provider` | CI platform name | `github_actions`, `bitbucket_pipelines`, `azure_devops`, `generic_ci` |
509
552
| `X-Event-Type` | CI event type | `pull_request`, `push`, `release` |
510
553
| `X-Release-Tag` | Release tag name (when event is release) | `v1.2.3` |
0 commit comments