diff options
| author | Ahmed AbdelHalim <[email protected]> | 2026-04-10 14:23:59 +0200 |
|---|---|---|
| committer | Ahmed AbdelHalim <[email protected]> | 2026-04-10 14:23:59 +0200 |
| commit | caacbafa96e906111cc6715ae4bdf5a0a007da3a (patch) | |
| tree | 094aaa0db55e1153a0df73288371d35ab802f4ad | |
| parent | 58b58b33d62ccb137de5d4425839d7913950f253 (diff) | |
Pass GITHUB_TOKEN to docker to avoid rate limiting tests
| -rw-r--r-- | molecule/archlinux-gnome/molecule.yml | 1 | ||||
| -rw-r--r-- | molecule/archlinux/molecule.yml | 1 | ||||
| -rw-r--r-- | molecule/debian/molecule.yml | 1 | ||||
| -rw-r--r-- | molecule/raspberrypi/molecule.yml | 1 | ||||
| -rw-r--r-- | molecule/ubuntu/molecule.yml | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/molecule/archlinux-gnome/molecule.yml b/molecule/archlinux-gnome/molecule.yml index 67532576..04695f62 100644 --- a/molecule/archlinux-gnome/molecule.yml +++ b/molecule/archlinux-gnome/molecule.yml @@ -30,6 +30,7 @@ provisioner: group_vars: "../../group_vars/" env: ANSIBLE_ROLES_PATH: "../../roles" + GITHUB_TOKEN: "{{ lookup('env', 'GITHUB_TOKEN') }}" config_options: defaults: callback_result_format: yaml diff --git a/molecule/archlinux/molecule.yml b/molecule/archlinux/molecule.yml index ad0e7e97..9e1e62aa 100644 --- a/molecule/archlinux/molecule.yml +++ b/molecule/archlinux/molecule.yml @@ -30,6 +30,7 @@ provisioner: group_vars: "../../group_vars/" env: ANSIBLE_ROLES_PATH: "../../roles" + GITHUB_TOKEN: "{{ lookup('env', 'GITHUB_TOKEN') }}" config_options: defaults: callback_result_format: yaml diff --git a/molecule/debian/molecule.yml b/molecule/debian/molecule.yml index e7ce6b95..8b63b54a 100644 --- a/molecule/debian/molecule.yml +++ b/molecule/debian/molecule.yml @@ -30,6 +30,7 @@ provisioner: group_vars: "../../group_vars/" env: ANSIBLE_ROLES_PATH: "../../roles" + GITHUB_TOKEN: "{{ lookup('env', 'GITHUB_TOKEN') }}" config_options: defaults: callback_result_format: yaml diff --git a/molecule/raspberrypi/molecule.yml b/molecule/raspberrypi/molecule.yml index 327edd0f..2295f3c8 100644 --- a/molecule/raspberrypi/molecule.yml +++ b/molecule/raspberrypi/molecule.yml @@ -30,6 +30,7 @@ provisioner: group_vars: "../../group_vars/" env: ANSIBLE_ROLES_PATH: "../../roles" + GITHUB_TOKEN: "{{ lookup('env', 'GITHUB_TOKEN') }}" config_options: defaults: callback_result_format: yaml diff --git a/molecule/ubuntu/molecule.yml b/molecule/ubuntu/molecule.yml index 12fc5a82..48b3448a 100644 --- a/molecule/ubuntu/molecule.yml +++ b/molecule/ubuntu/molecule.yml @@ -30,6 +30,7 @@ provisioner: group_vars: "../../group_vars/" env: ANSIBLE_ROLES_PATH: "../../roles" + GITHUB_TOKEN: "{{ lookup('env', 'GITHUB_TOKEN') }}" config_options: defaults: callback_result_format: yaml |
