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 Jan 16, 2025. It is now read-only.
* Update ubuntu example to fix /opt/hostedtoolcache ([#2302](https://github.com/philips-labs/terraform-aws-github-runner/issues/2302)) ([8eea748](https://github.com/philips-labs/terraform-aws-github-runner/commit/8eea74817a9817ca386b77f1b90ae9ef721e250e))
Copy file name to clipboardExpand all lines: README.md
+18-1
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ This [Terraform](https://www.terraform.io/) module creates the required infrastr
22
22
-[Idle runners](#idle-runners)
23
23
-[Ephemeral runners](#ephemeral-runners)
24
24
-[Prebuilt Images](#prebuilt-images)
25
+
-[Experimental - Optional queue to publish GitHub workflow job events](#experimental---optional-queue-to-publish-github-workflow-job-events)
25
26
-[Examples](#examples)
26
27
-[Sub modules](#sub-modules)
27
28
-[ARM64 configuration for submodules](#arm64-configuration-for-submodules)
@@ -310,7 +311,23 @@ The example for [ephemeral runners](./examples/ephemeral) is based on the [defau
310
311
311
312
### Prebuilt Images
312
313
313
-
This module also allows you to run agents from a prebuilt AMI to gain faster startup times. You can find more information in [the image README.md](/images/README.md). When the GitHub runner is part of the AMI you can disable the binary syncer by setting `enable_runner_binaries_syncer = false`.
314
+
This module also allows you to run agents from a prebuilt AMI to gain faster startup times. You can find more information in [the image README.md](/images/README.md)
This queue is an experimental feature to allow you to receive a copy of the wokflow_jobs events sent by the GItHub App. For example to calculate matrix or monitor the system.
319
+
320
+
To enable the feature set `enable_workflow_job_events_queue = true`. Be-aware the feature in experimental!
321
+
322
+
Messages received on the queue are using the same format as published by GitHub wrapped in a property `workflowJobEvent`.
323
+
324
+
```
325
+
export interface GithubWorkflowEvent {
326
+
workflowJobEvent: WorkflowJobEvent;
327
+
}
328
+
```
329
+
This extendible format allows to add more fields to be added if needed.
330
+
You can configure the queue by setting properties to `workflow_job_events_queue_config`
0 commit comments