-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbitrise.yml
More file actions
49 lines (45 loc) · 1.42 KB
/
bitrise.yml
File metadata and controls
49 lines (45 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
format_version: "13"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
workflows:
audit-this-step:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
stepman audit --step-yml ./step.yml
test:
steps:
- script:
title: "Setup test environment"
inputs:
- content: |
#!/bin/bash
echo "🧪 Test Bitrise step sur PR #64"
echo "================================"
echo ""
echo "✅ GITHUB_TOKEN présent: ${GITHUB_TOKEN:+OUI}"
echo "✅ Branch: $(git branch --show-current)"
echo ""
- path::./:
title: "Test Badgetizr Step sur PR #64"
inputs:
- pr_id: "64"
- configuration: ".badgetizr.yml"
- pr_destination_branch: "develop"
- pr_build_number: "1"
- pr_build_url: "https://app.bitrise.io/build/test-local"
- ci_status: "passed"
- ci_text: "Test Local"
- github_token: "$GITHUB_TOKEN"
- badgetizr_version: "2.5.0"
- provider: "github"
- script:
title: "Test completed"
inputs:
- content: |
#!/bin/bash
echo ""
echo "✅ Test completed successfully !"