all: children: zuul_unreachable: hosts: {} hosts: controller: ansible_connection: ssh ansible_host: 162.253.55.200 ansible_port: 22 ansible_python_interpreter: auto ansible_user: zuul nodepool: az: nova cloud: ansible-vexxhost external_id: a0ee2983-baf6-4534-bde6-e2eb1056147d host_id: 23b82c94c74d869eef1b1aa959c1d6229a108624df6cf24a6251242e interface_ip: 162.253.55.200 label: ansible-fedora-37-1vcpu private_ipv4: 192.168.0.163 private_ipv6: null provider: ansible-vexxhost-ca-ymq-1 public_ipv4: 162.253.55.200 public_ipv6: 2604:e100:1:0:f816:3eff:fef3:7b5 region: ca-ymq-1 slot: null zuul_use_fetch_output: true vars: zuul: _inheritance_path: - '' - '' - '' ansible_version: '8' artifacts: - branch: main change: '669' job: build-ansible-collection metadata: type: zuul_manifest name: Zuul Manifest patchset: 0a98fd464db534ba247832f816647bd45d1e74ac project: ansible-collections/community.windows url: https://100c4f88851022cb569b-d8bc15af463d20477bbeb8ac57239c5a.ssl.cf5.rackcdn.com/ansible/2fc61f3e92c14b69b7b30fbeb73fe056/zuul-manifest.json - branch: main change: '669' job: build-ansible-collection metadata: type: ansible_collection version: 3.1.1-dev13 name: community.windows patchset: 0a98fd464db534ba247832f816647bd45d1e74ac project: ansible-collections/community.windows url: https://100c4f88851022cb569b-d8bc15af463d20477bbeb8ac57239c5a.ssl.cf5.rackcdn.com/ansible/2fc61f3e92c14b69b7b30fbeb73fe056/artifacts/community-windows-3.1.1-dev13.tar.gz attempts: 2 branch: main build: f3b74c9fc1a642ff99c38060040fe9b5 build_refs: - branch: main change: '669' change_message: "win_xml: read the content of nodes\n\n\r\n##### SUMMARY\r\nCurrently, the win_xml does not have the possibility to read attributes or text from an XmlNode. This PR adds a parameter to allow fetching of a nodes content (defined by xpath). This is already a feature of [community.general.xml](https://docs.ansible.com/projects/ansible/latest/collections/community/general/xml_module.html#parameter-content). Possible use case:\r\n\r\n- You need to extract attributes or text values at runtime\r\n\r\nFixes #54, #144\r\n\r\n##### ISSUE TYPE\r\n\r\n- Feature Pull Request\r\n\r\n##### COMPONENT NAME\r\nchangelogs/fragments/win_xml-read.yml\r\nplugins/modules/win_xml.ps1\r\nplugins/modules/win_xml.py\r\ntests/integration/targets/win_xml/tasks/main.yml\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nHere are 2 examples of use cases for this feature\r\n\r\nXML:\r\n\r\n```paste below\r\n\r\n\r\n \r\n \ \r\n \r\n \r\n \r\n \r\n C:\\Program Files\\AccountingService\r\n 2026-01-10T14:23:51Z\r\n \ \r\n Reporting\r\n \ Chat\r\n Forecasting\r\n \ \r\n \r\n\r\n```\r\nANSIBLE:\r\n\r\n```paste below\r\n - name: Retrieving the port of the server\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Server/Service/Connector\r\n \ content: attribute\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches[0].Connector.port\r\n\r\n \ - name: Retrieving the name of enabled features\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Application[@name=\"AccountingService\"]/Features/Feature[@enabled=\"true\"]\r\n \ content: text\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches\r\n```\r\nOUTPUT:\r\n```paste below\r\nTASK [Print general output] \r\nok: [WindowServer] => {\r\n \"xml_output.matches[0].Connector.port\": \"9595\"\r\n}\r\n\r\nok: [WindowServer] => {\r\n \"xml_output.matches\": [\r\n {\r\n \"Feature\": \"Reporting\"\r\n },\r\n \ {\r\n \"Feature\": \"Chat\"\r\n }\r\n ]\r\n}\r\n```\r\n" change_url: https://github.com/ansible-collections/community.windows/pull/669 commit_id: 0a98fd464db534ba247832f816647bd45d1e74ac patchset: 0a98fd464db534ba247832f816647bd45d1e74ac project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.windows name: ansible-collections/community.windows short_name: community.windows src_dir: src/github.com/ansible-collections/community.windows topic: null buildset: 2dc57ffc68e4433a88f79e279438b64e buildset_refs: - branch: main change: '669' change_message: "win_xml: read the content of nodes\n\n\r\n##### SUMMARY\r\nCurrently, the win_xml does not have the possibility to read attributes or text from an XmlNode. This PR adds a parameter to allow fetching of a nodes content (defined by xpath). This is already a feature of [community.general.xml](https://docs.ansible.com/projects/ansible/latest/collections/community/general/xml_module.html#parameter-content). Possible use case:\r\n\r\n- You need to extract attributes or text values at runtime\r\n\r\nFixes #54, #144\r\n\r\n##### ISSUE TYPE\r\n\r\n- Feature Pull Request\r\n\r\n##### COMPONENT NAME\r\nchangelogs/fragments/win_xml-read.yml\r\nplugins/modules/win_xml.ps1\r\nplugins/modules/win_xml.py\r\ntests/integration/targets/win_xml/tasks/main.yml\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nHere are 2 examples of use cases for this feature\r\n\r\nXML:\r\n\r\n```paste below\r\n\r\n\r\n \r\n \ \r\n \r\n \r\n \r\n \r\n C:\\Program Files\\AccountingService\r\n 2026-01-10T14:23:51Z\r\n \ \r\n Reporting\r\n \ Chat\r\n Forecasting\r\n \ \r\n \r\n\r\n```\r\nANSIBLE:\r\n\r\n```paste below\r\n - name: Retrieving the port of the server\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Server/Service/Connector\r\n \ content: attribute\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches[0].Connector.port\r\n\r\n \ - name: Retrieving the name of enabled features\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Application[@name=\"AccountingService\"]/Features/Feature[@enabled=\"true\"]\r\n \ content: text\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches\r\n```\r\nOUTPUT:\r\n```paste below\r\nTASK [Print general output] \r\nok: [WindowServer] => {\r\n \"xml_output.matches[0].Connector.port\": \"9595\"\r\n}\r\n\r\nok: [WindowServer] => {\r\n \"xml_output.matches\": [\r\n {\r\n \"Feature\": \"Reporting\"\r\n },\r\n \ {\r\n \"Feature\": \"Chat\"\r\n }\r\n ]\r\n}\r\n```\r\n" change_url: https://github.com/ansible-collections/community.windows/pull/669 commit_id: 0a98fd464db534ba247832f816647bd45d1e74ac patchset: 0a98fd464db534ba247832f816647bd45d1e74ac project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.windows name: ansible-collections/community.windows short_name: community.windows src_dir: src/github.com/ansible-collections/community.windows topic: null change: '669' change_message: "win_xml: read the content of nodes\n\n\r\n##### SUMMARY\r\nCurrently, the win_xml does not have the possibility to read attributes or text from an XmlNode. This PR adds a parameter to allow fetching of a nodes content (defined by xpath). This is already a feature of [community.general.xml](https://docs.ansible.com/projects/ansible/latest/collections/community/general/xml_module.html#parameter-content). Possible use case:\r\n\r\n- You need to extract attributes or text values at runtime\r\n\r\nFixes #54, #144\r\n\r\n##### ISSUE TYPE\r\n\r\n- Feature Pull Request\r\n\r\n##### COMPONENT NAME\r\nchangelogs/fragments/win_xml-read.yml\r\nplugins/modules/win_xml.ps1\r\nplugins/modules/win_xml.py\r\ntests/integration/targets/win_xml/tasks/main.yml\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nHere are 2 examples of use cases for this feature\r\n\r\nXML:\r\n\r\n```paste below\r\n\r\n\r\n \r\n \r\n \ \r\n \r\n \r\n \r\n C:\\Program Files\\AccountingService\r\n 2026-01-10T14:23:51Z\r\n \ \r\n Reporting\r\n \ Chat\r\n Forecasting\r\n \ \r\n \r\n\r\n```\r\nANSIBLE:\r\n\r\n```paste below\r\n - name: Retrieving the port of the server\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Server/Service/Connector\r\n \ content: attribute\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches[0].Connector.port\r\n\r\n \ - name: Retrieving the name of enabled features\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Application[@name=\"AccountingService\"]/Features/Feature[@enabled=\"true\"]\r\n \ content: text\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches\r\n```\r\nOUTPUT:\r\n```paste below\r\nTASK [Print general output] \r\nok: [WindowServer] => {\r\n \"xml_output.matches[0].Connector.port\": \"9595\"\r\n}\r\n\r\nok: [WindowServer] => {\r\n \"xml_output.matches\": [\r\n {\r\n \"Feature\": \"Reporting\"\r\n },\r\n \ {\r\n \"Feature\": \"Chat\"\r\n }\r\n ]\r\n}\r\n```\r\n" change_url: https://github.com/ansible-collections/community.windows/pull/669 child_jobs: [] commit_id: 0a98fd464db534ba247832f816647bd45d1e74ac event_id: f5a20050-fb47-11f0-8f68-0d0a7ba8c776 executor: hostname: ze03.softwarefactory-project.io inventory_file: /var/lib/zuul/builds/f3b74c9fc1a642ff99c38060040fe9b5/ansible/inventory.yaml log_root: /var/lib/zuul/builds/f3b74c9fc1a642ff99c38060040fe9b5/work/logs result_data_file: /var/lib/zuul/builds/f3b74c9fc1a642ff99c38060040fe9b5/work/results.json src_root: /var/lib/zuul/builds/f3b74c9fc1a642ff99c38060040fe9b5/work/src work_root: /var/lib/zuul/builds/f3b74c9fc1a642ff99c38060040fe9b5/work items: - branch: main change: '669' change_message: "win_xml: read the content of nodes\n\n\r\n##### SUMMARY\r\nCurrently, the win_xml does not have the possibility to read attributes or text from an XmlNode. This PR adds a parameter to allow fetching of a nodes content (defined by xpath). This is already a feature of [community.general.xml](https://docs.ansible.com/projects/ansible/latest/collections/community/general/xml_module.html#parameter-content). Possible use case:\r\n\r\n- You need to extract attributes or text values at runtime\r\n\r\nFixes #54, #144\r\n\r\n##### ISSUE TYPE\r\n\r\n- Feature Pull Request\r\n\r\n##### COMPONENT NAME\r\nchangelogs/fragments/win_xml-read.yml\r\nplugins/modules/win_xml.ps1\r\nplugins/modules/win_xml.py\r\ntests/integration/targets/win_xml/tasks/main.yml\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nHere are 2 examples of use cases for this feature\r\n\r\nXML:\r\n\r\n```paste below\r\n\r\n\r\n \r\n \ \r\n \r\n \r\n \r\n \r\n C:\\Program Files\\AccountingService\r\n 2026-01-10T14:23:51Z\r\n \ \r\n Reporting\r\n \ Chat\r\n Forecasting\r\n \ \r\n \r\n\r\n```\r\nANSIBLE:\r\n\r\n```paste below\r\n - name: Retrieving the port of the server\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Server/Service/Connector\r\n \ content: attribute\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches[0].Connector.port\r\n\r\n \ - name: Retrieving the name of enabled features\r\n community.windows.win_xml:\r\n \ path: \"{{ xml_filepath }}\"\r\n xpath: /SystemConfiguration/Application[@name=\"AccountingService\"]/Features/Feature[@enabled=\"true\"]\r\n \ content: text\r\n register: xml_output\r\n\r\n - name: Print general output\r\n ansible.builtin.debug:\r\n var: xml_output.matches\r\n```\r\nOUTPUT:\r\n```paste below\r\nTASK [Print general output] \r\nok: [WindowServer] => {\r\n \"xml_output.matches[0].Connector.port\": \"9595\"\r\n}\r\n\r\nok: [WindowServer] => {\r\n \"xml_output.matches\": [\r\n {\r\n \"Feature\": \"Reporting\"\r\n },\r\n \ {\r\n \"Feature\": \"Chat\"\r\n }\r\n ]\r\n}\r\n```\r\n" change_url: https://github.com/ansible-collections/community.windows/pull/669 commit_id: 0a98fd464db534ba247832f816647bd45d1e74ac patchset: 0a98fd464db534ba247832f816647bd45d1e74ac project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.windows name: ansible-collections/community.windows short_name: community.windows src_dir: src/github.com/ansible-collections/community.windows topic: null job: ansible-galaxy-importer jobtags: [] max_attempts: 3 message: d2luX3htbDogcmVhZCB0aGUgY29udGVudCBvZiBub2RlcwoKDQojIyMjIyBTVU1NQVJZDQpDdXJyZW50bHksIHRoZSB3aW5feG1sIGRvZXMgbm90IGhhdmUgdGhlIHBvc3NpYmlsaXR5IHRvIHJlYWQgYXR0cmlidXRlcyBvciB0ZXh0IGZyb20gYW4gWG1sTm9kZS4gVGhpcyBQUiBhZGRzIGEgcGFyYW1ldGVyIHRvIGFsbG93IGZldGNoaW5nIG9mIGEgbm9kZXMgY29udGVudCAoZGVmaW5lZCBieSB4cGF0aCkuIFRoaXMgaXMgYWxyZWFkeSBhIGZlYXR1cmUgb2YgW2NvbW11bml0eS5nZW5lcmFsLnhtbF0oaHR0cHM6Ly9kb2NzLmFuc2libGUuY29tL3Byb2plY3RzL2Fuc2libGUvbGF0ZXN0L2NvbGxlY3Rpb25zL2NvbW11bml0eS9nZW5lcmFsL3htbF9tb2R1bGUuaHRtbCNwYXJhbWV0ZXItY29udGVudCkuIFBvc3NpYmxlIHVzZSBjYXNlOg0KDQotIFlvdSBuZWVkIHRvIGV4dHJhY3QgYXR0cmlidXRlcyBvciB0ZXh0IHZhbHVlcyBhdCBydW50aW1lDQoNCkZpeGVzICM1NCwgIzE0NA0KDQojIyMjIyBJU1NVRSBUWVBFDQo8IS0tLSBQaWNrIG9uZSBiZWxvdyBhbmQgZGVsZXRlIHRoZSByZXN0IC0tPg0KLSBGZWF0dXJlIFB1bGwgUmVxdWVzdA0KDQojIyMjIyBDT01QT05FTlQgTkFNRQ0KY2hhbmdlbG9ncy9mcmFnbWVudHMvd2luX3htbC1yZWFkLnltbA0KcGx1Z2lucy9tb2R1bGVzL3dpbl94bWwucHMxDQpwbHVnaW5zL21vZHVsZXMvd2luX3htbC5weQ0KdGVzdHMvaW50ZWdyYXRpb24vdGFyZ2V0cy93aW5feG1sL3Rhc2tzL21haW4ueW1sDQoNCiMjIyMjIEFERElUSU9OQUwgSU5GT1JNQVRJT04NCjwhLS0tIEluY2x1ZGUgYWRkaXRpb25hbCBpbmZvcm1hdGlvbiB0byBoZWxwIHBlb3BsZSB1bmRlcnN0YW5kIHRoZSBjaGFuZ2UgaGVyZSAtLT4NCkhlcmUgYXJlIDIgZXhhbXBsZXMgb2YgdXNlIGNhc2VzIGZvciB0aGlzIGZlYXR1cmUNCjwhLS0tIEEgc3RlcC1ieS1zdGVwIHJlcHJvZHVjdGlvbiBvZiB0aGUgcHJvYmxlbSBpcyBoZWxwZnVsIGlmIHRoZXJlIGlzIG5vIHJlbGF0ZWQgaXNzdWUgLS0+DQpYTUw6DQo8IS0tLSBQYXN0ZSB2ZXJiYXRpbSBjb21tYW5kIG91dHB1dCBiZWxvdywgZS5nLiBiZWZvcmUgYW5kIGFmdGVyIHlvdXIgY2hhbmdlIC0tPg0KYGBgcGFzdGUgYmVsb3cNCjw/eG1sIHZlcnNpb249IjEuMCIgZW5jb2Rpbmc9InV0Zi04Ij8+DQo8U3lzdGVtQ29uZmlndXJhdGlvbj4NCiAgPFNlcnZlcj4NCiAgICA8U2VydmljZT4NCiAgICAgIDxDb25uZWN0b3IgcG9ydD0iOTU5NSIgcHJvdG9jb2w9IkhUVFAvMS4xIiBjb25uZWN0aW9uVGltZW91dD0iMjAwMDAiIHJlZGlyZWN0UG9ydD0iODQ0MyIgLz4NCiAgICA8L1NlcnZpY2U+DQogIDwvU2VydmVyPg0KICA8QXBwbGljYXRpb24gbmFtZT0iQWNjb3VudGluZ1NlcnZpY2UiIHZlcnNpb249IjMuNy4xMiI+DQogICAgPEluc3RhbGxQYXRoPkM6XFByb2dyYW0gRmlsZXNcQWNjb3VudGluZ1NlcnZpY2U8L0luc3RhbGxQYXRoPg0KICAgIDxMYXN0VXBkYXRlZD4yMDI2LTAxLTEwVDE0OjIzOjUxWjwvTGFzdFVwZGF0ZWQ+DQogICAgPEZlYXR1cmVzPg0KICAgICAgPEZlYXR1cmUgZW5hYmxlZD0idHJ1ZSI+UmVwb3J0aW5nPC9GZWF0dXJlPg0KICAgICAgPEZlYXR1cmUgZW5hYmxlZD0idHJ1ZSI+Q2hhdDwvRmVhdHVyZT4NCiAgICAgIDxGZWF0dXJlIGVuYWJsZWQ9ImZhbHNlIj5Gb3JlY2FzdGluZzwvRmVhdHVyZT4NCiAgICA8L0ZlYXR1cmVzPg0KICA8L0FwcGxpY2F0aW9uPg0KPC9TeXN0ZW1Db25maWd1cmF0aW9uPg0KYGBgDQpBTlNJQkxFOg0KPCEtLS0gUGFzdGUgdmVyYmF0aW0gY29tbWFuZCBvdXRwdXQgYmVsb3csIGUuZy4gYmVmb3JlIGFuZCBhZnRlciB5b3VyIGNoYW5nZSAtLT4NCmBgYHBhc3RlIGJlbG93DQogICAgLSBuYW1lOiBSZXRyaWV2aW5nIHRoZSBwb3J0IG9mIHRoZSBzZXJ2ZXINCiAgICAgIGNvbW11bml0eS53aW5kb3dzLndpbl94bWw6DQogICAgICAgIHBhdGg6ICJ7eyB4bWxfZmlsZXBhdGggfX0iDQogICAgICAgIHhwYXRoOiAvU3lzdGVtQ29uZmlndXJhdGlvbi9TZXJ2ZXIvU2VydmljZS9Db25uZWN0b3INCiAgICAgICAgY29udGVudDogYXR0cmlidXRlDQogICAgICByZWdpc3RlcjogeG1sX291dHB1dA0KDQogICAgLSBuYW1lOiBQcmludCBnZW5lcmFsIG91dHB1dA0KICAgICAgYW5zaWJsZS5idWlsdGluLmRlYnVnOg0KICAgICAgICB2YXI6IHhtbF9vdXRwdXQubWF0Y2hlc1swXS5Db25uZWN0b3IucG9ydA0KDQogICAgLSBuYW1lOiBSZXRyaWV2aW5nIHRoZSBuYW1lIG9mIGVuYWJsZWQgZmVhdHVyZXMNCiAgICAgIGNvbW11bml0eS53aW5kb3dzLndpbl94bWw6DQogICAgICAgIHBhdGg6ICJ7eyB4bWxfZmlsZXBhdGggfX0iDQogICAgICAgIHhwYXRoOiAvU3lzdGVtQ29uZmlndXJhdGlvbi9BcHBsaWNhdGlvbltAbmFtZT0iQWNjb3VudGluZ1NlcnZpY2UiXS9GZWF0dXJlcy9GZWF0dXJlW0BlbmFibGVkPSJ0cnVlIl0NCiAgICAgICAgY29udGVudDogdGV4dA0KICAgICAgcmVnaXN0ZXI6IHhtbF9vdXRwdXQNCg0KICAgIC0gbmFtZTogUHJpbnQgZ2VuZXJhbCBvdXRwdXQNCiAgICAgIGFuc2libGUuYnVpbHRpbi5kZWJ1ZzoNCiAgICAgICAgdmFyOiB4bWxfb3V0cHV0Lm1hdGNoZXMNCmBgYA0KT1VUUFVUOg0KYGBgcGFzdGUgYmVsb3cNClRBU0sgW1ByaW50IGdlbmVyYWwgb3V0cHV0XSANCm9rOiBbV2luZG93U2VydmVyXSA9PiB7DQogICAgInhtbF9vdXRwdXQubWF0Y2hlc1swXS5Db25uZWN0b3IucG9ydCI6ICI5NTk1Ig0KfQ0KDQpvazogW1dpbmRvd1NlcnZlcl0gPT4gew0KICAgICJ4bWxfb3V0cHV0Lm1hdGNoZXMiOiBbDQogICAgICAgIHsNCiAgICAgICAgICAgICJGZWF0dXJlIjogIlJlcG9ydGluZyINCiAgICAgICAgfSwNCiAgICAgICAgew0KICAgICAgICAgICAgIkZlYXR1cmUiOiAiQ2hhdCINCiAgICAgICAgfQ0KICAgIF0NCn0NCmBgYA0K patchset: 0a98fd464db534ba247832f816647bd45d1e74ac pipeline: third-party-check playbook_context: playbook_projects: trusted/project_0/github.com/ansible/zuul-config: canonical_name: github.com/ansible/zuul-config checkout: master commit: d9f278b159087ee149c1beb19435b57805d5c820 trusted/project_1/opendev.org/zuul/zuul-jobs: canonical_name: opendev.org/zuul/zuul-jobs checkout: master commit: d73b78cc624f363c6b7fcfe833f2db4571e4e979 untrusted/project_0/github.com/ansible/ansible-zuul-jobs: canonical_name: github.com/ansible/ansible-zuul-jobs checkout: master commit: e7ff49de526383ec1701720d6aed921160ec3931 untrusted/project_1/github.com/ansible/zuul-config: canonical_name: github.com/ansible/zuul-config checkout: master commit: d9f278b159087ee149c1beb19435b57805d5c820 untrusted/project_2/opendev.org/zuul/zuul-jobs: canonical_name: opendev.org/zuul/zuul-jobs checkout: master commit: d73b78cc624f363c6b7fcfe833f2db4571e4e979 playbooks: - path: untrusted/project_0/github.com/ansible/ansible-zuul-jobs/playbooks/ansible-galaxy-importer/run.yaml roles: - checkout: master checkout_description: playbook branch link_name: ansible/playbook_0/role_0/zuul-jobs link_target: untrusted/project_0/github.com/ansible/ansible-zuul-jobs role_path: ansible/playbook_0/role_0/zuul-jobs/roles - checkout: master checkout_description: project default branch link_name: ansible/playbook_0/role_1/zuul-config link_target: untrusted/project_1/github.com/ansible/zuul-config role_path: ansible/playbook_0/role_1/zuul-config/roles - checkout: master checkout_description: project default branch link_name: ansible/playbook_0/role_2/zuul-jobs link_target: untrusted/project_2/opendev.org/zuul/zuul-jobs role_path: ansible/playbook_0/role_2/zuul-jobs/roles post_review: false project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.windows name: ansible-collections/community.windows short_name: community.windows src_dir: src/github.com/ansible-collections/community.windows projects: github.com/ansible-collections/community.windows: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.windows checkout: main checkout_description: zuul branch commit: 0a98fd464db534ba247832f816647bd45d1e74ac name: ansible-collections/community.windows required: false short_name: community.windows src_dir: src/github.com/ansible-collections/community.windows github.com/ansible-network/releases: canonical_hostname: github.com canonical_name: github.com/ansible-network/releases checkout: master checkout_description: project default branch commit: 646b310655c531e4904be07f4ff8fc3a29addd09 name: ansible-network/releases required: true short_name: releases src_dir: src/github.com/ansible-network/releases ref: refs/pull/669/head resources: {} tenant: ansible timeout: 1800 topic: null voting: true zuul_use_fetch_output: true