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
{{ message }}
This repository was archived by the owner on Dec 29, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: docs/integrations/github/github-actions.md
+34-1Lines changed: 34 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,40 @@ on:
145
145
required: true
146
146
```
147
147
148
-
This setup allows application teams to quickly and efficiently access automation workflows from the marketplace, enhancing their productivity and reducing the need for Git expertise.
148
+
Within a job, you need to decode the `buildingBlockRun` input.
149
+
Define a job step to decode all Building Block inputs as follows and provide them to following steps:
150
+
```yaml
151
+
jobs:
152
+
some-job:
153
+
runs-on: ubuntu-latest # ships with jq already!
154
+
steps:
155
+
# ... some other steps
156
+
- name: Decode buildingBlockRun inputs
157
+
id: decodeBuildingBlockInputs
158
+
shell: bash
159
+
env:
160
+
# pass in indirectly as env variable to avoid cluttering the job log with a large base64 string
0 commit comments