0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-03 18:51:48 +00:00
renovatebot_renovate/lib/modules/datasource/bitrise/readme.md
Sebastian Poxhofer 4c15038aaa
feat(datasources): add bitrise datasource (#30138)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2024-07-25 17:51:00 +00:00

26 lines
748 B
Markdown

Renovate uses this datasource to fetch Bitrise steps from GitHub repositories.
| Renovate field | What value to use? |
| -------------- | --------------------------------------- |
| `packageName` | Name of the Bitrise step |
| `registryUrl` | GitHub HTTP Git URL, as used by Bitrise |
For example, in the YAML snippet below:
- `packageName` is `script`
- `registryUrl` is `https://github.com/bitrise-io/bitrise-steplib.git`
```yaml
format_version: 11
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: android
app:
envs:
- MY_NAME: My Name
workflows:
test:
steps:
- script@1.1.5:
inputs:
- content: echo "Hello ${MY_NAME}!"
```