all: children: zuul_unreachable: hosts: {} hosts: controller: ansible_connection: ssh ansible_host: 199.204.45.67 ansible_port: 22 ansible_python_interpreter: auto ansible_user: zuul nodepool: az: nova cloud: ansible-vexxhost external_id: 7a9d7569-6728-4fdb-80b6-f64ec030f74e host_id: 10c1e16bf10cc0356f6413b8d85f4adcc374d6467225cbe839d96881 interface_ip: 199.204.45.67 label: ansible-fedora-37-1vcpu private_ipv4: 192.168.0.100 private_ipv6: null provider: ansible-vexxhost-ca-ymq-1 public_ipv4: 199.204.45.67 public_ipv6: 2604:e100:1:0:f816:3eff:fedc:a037 region: ca-ymq-1 slot: null zuul_use_fetch_output: true vars: zuul: _inheritance_path: - '' - '' - '' ansible_version: '8' artifacts: - branch: main change: '12' job: build-ansible-collection metadata: type: zuul_manifest name: Zuul Manifest patchset: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 project: ansible-collections/community.eda url: https://984ea2a2897a24010496-bc39ee103d55153038af45170cec7eea.ssl.cf2.rackcdn.com/ansible/5e8802efc60a4da4b666973b55b19d5b/zuul-manifest.json - branch: main change: '12' job: build-ansible-collection metadata: type: ansible_collection version: 0.1.0 name: community.eda patchset: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 project: ansible-collections/community.eda url: https://984ea2a2897a24010496-bc39ee103d55153038af45170cec7eea.ssl.cf2.rackcdn.com/ansible/5e8802efc60a4da4b666973b55b19d5b/artifacts/community-eda-0.1.0.tar.gz attempts: 1 branch: main build: 5e300a308ca94ca6bad3fd72bebd313e build_refs: - branch: main change: '12' change_message: "Import content from ansible.eda\n\n##### SUMMARY\r\n\r\nImport few source plugins from the `ansible.eda` collection to this collection, together with their tests and the supporting bits for them.\r\n\r\nThe imported branch contains the whole history of the files.\r\n\r\n##### ISSUE TYPE\r\n\r\n- New Module Pull Request\r\n\r\n##### COMPONENT NAME\r\n\r\n- file\r\n- file_watch\r\n- journald\r\n- url_check\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe importing was done in the following way.\r\n\r\nFirst, create a script (from now on called `filter-eda-collection.sh`) that uses `git filter-repo` to filter the https://github.com/ansible/event-driven-ansible repository:\r\n```sh\r\n#!/bin/sh\r\nset -x\r\nset -e\r\n\r\ngit filter-repo \\\r\n --path-regex '.*/(file|file_watch|journald|url_check|watchdog)\\.(py|json)$' \\\r\n --path-match 'tests/integration/utils.py' \\\r\n --path-match 'tests/integration/conftest.py' \\\r\n --path-match 'tests/integration/__init__.py' \\\r\n --path-glob 'tests/integration/event_source_url_check/*' \\\r\n --path-regex '.*/(journald_events|local-test-rules)\\.yml$' \\\r\n $NULL\r\n\r\n# remove all the branches than 'main'\r\ngit branch -a | grep -vw 'main' | xargs git branch -D\r\n# remove all the tags\r\ngit tag | xargs -n1 git tag -d\r\n\r\n# remove all the old git refs\r\nawk '/replace/ {print $2;}' .git/info/refs | xargs --no-run-if-empty -n1 git update-ref -d\r\n\r\n# cleanup the repository\r\nrm -rf .git/filter-repo/\r\ngit reflog expire --expire=all --expire-unreachable=all --rewrite --all\r\ngit gc --aggressive --prune=now\r\ngit fsck --full\r\ndu -hcs .git\r\n```\r\n\r\nThen filter a new clone of `event-driven-ansible`:\r\n```sh\r\n$ git clone https://github.com/ansible/event-driven-ansible.git eda-collection-to-community\r\n$ cd eda-collection-to-community/\r\neda-collection-to-community$ /path/to/filter-eda-collection.sh\r\n+ set -e\r\n[...]\r\n+ du -hcs .git\r\n192K \ .git\r\n192K total\r\n```\r\n(the output of the script was shortened for readability)\r\n\r\nThen create a local branch in this repository, and merge the `main` branch of the resulting filtered repository:\r\n```sh\r\n$ git remote add to-community /path/to/eda-collection-to-community/\r\n$ git fetch to-community\r\n$ git branch import-content-from-ansible-eda\r\n$ git checkout import-content-from-ansible-eda\r\n$ git merge --allow-unrelated-histories to-community/main \r\n```\r\nand then the additional couple of commits with followups (e.g. `manifest.txt`, `requirements.txt` were done according to the test runs.\r\n" change_url: https://github.com/ansible-collections/community.eda/pull/12 commit_id: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 patchset: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.eda name: ansible-collections/community.eda short_name: community.eda src_dir: src/github.com/ansible-collections/community.eda topic: null buildset: b39093dda71c4b3a9c8f9d04e75c6a91 buildset_refs: - branch: main change: '12' change_message: "Import content from ansible.eda\n\n##### SUMMARY\r\n\r\nImport few source plugins from the `ansible.eda` collection to this collection, together with their tests and the supporting bits for them.\r\n\r\nThe imported branch contains the whole history of the files.\r\n\r\n##### ISSUE TYPE\r\n\r\n- New Module Pull Request\r\n\r\n##### COMPONENT NAME\r\n\r\n- file\r\n- file_watch\r\n- journald\r\n- url_check\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe importing was done in the following way.\r\n\r\nFirst, create a script (from now on called `filter-eda-collection.sh`) that uses `git filter-repo` to filter the https://github.com/ansible/event-driven-ansible repository:\r\n```sh\r\n#!/bin/sh\r\nset -x\r\nset -e\r\n\r\ngit filter-repo \\\r\n --path-regex '.*/(file|file_watch|journald|url_check|watchdog)\\.(py|json)$' \\\r\n --path-match 'tests/integration/utils.py' \\\r\n --path-match 'tests/integration/conftest.py' \\\r\n --path-match 'tests/integration/__init__.py' \\\r\n --path-glob 'tests/integration/event_source_url_check/*' \\\r\n --path-regex '.*/(journald_events|local-test-rules)\\.yml$' \\\r\n $NULL\r\n\r\n# remove all the branches than 'main'\r\ngit branch -a | grep -vw 'main' | xargs git branch -D\r\n# remove all the tags\r\ngit tag | xargs -n1 git tag -d\r\n\r\n# remove all the old git refs\r\nawk '/replace/ {print $2;}' .git/info/refs | xargs --no-run-if-empty -n1 git update-ref -d\r\n\r\n# cleanup the repository\r\nrm -rf .git/filter-repo/\r\ngit reflog expire --expire=all --expire-unreachable=all --rewrite --all\r\ngit gc --aggressive --prune=now\r\ngit fsck --full\r\ndu -hcs .git\r\n```\r\n\r\nThen filter a new clone of `event-driven-ansible`:\r\n```sh\r\n$ git clone https://github.com/ansible/event-driven-ansible.git eda-collection-to-community\r\n$ cd eda-collection-to-community/\r\neda-collection-to-community$ /path/to/filter-eda-collection.sh\r\n+ set -e\r\n[...]\r\n+ du -hcs .git\r\n192K \ .git\r\n192K total\r\n```\r\n(the output of the script was shortened for readability)\r\n\r\nThen create a local branch in this repository, and merge the `main` branch of the resulting filtered repository:\r\n```sh\r\n$ git remote add to-community /path/to/eda-collection-to-community/\r\n$ git fetch to-community\r\n$ git branch import-content-from-ansible-eda\r\n$ git checkout import-content-from-ansible-eda\r\n$ git merge --allow-unrelated-histories to-community/main \r\n```\r\nand then the additional couple of commits with followups (e.g. `manifest.txt`, `requirements.txt` were done according to the test runs.\r\n" change_url: https://github.com/ansible-collections/community.eda/pull/12 commit_id: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 patchset: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.eda name: ansible-collections/community.eda short_name: community.eda src_dir: src/github.com/ansible-collections/community.eda topic: null change: '12' change_message: "Import content from ansible.eda\n\n##### SUMMARY\r\n\r\nImport few source plugins from the `ansible.eda` collection to this collection, together with their tests and the supporting bits for them.\r\n\r\nThe imported branch contains the whole history of the files.\r\n\r\n##### ISSUE TYPE\r\n\r\n- New Module Pull Request\r\n\r\n##### COMPONENT NAME\r\n\r\n- file\r\n- file_watch\r\n- journald\r\n- url_check\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe importing was done in the following way.\r\n\r\nFirst, create a script (from now on called `filter-eda-collection.sh`) that uses `git filter-repo` to filter the https://github.com/ansible/event-driven-ansible repository:\r\n```sh\r\n#!/bin/sh\r\nset -x\r\nset -e\r\n\r\ngit filter-repo \\\r\n --path-regex '.*/(file|file_watch|journald|url_check|watchdog)\\.(py|json)$' \\\r\n --path-match 'tests/integration/utils.py' \\\r\n --path-match 'tests/integration/conftest.py' \\\r\n --path-match 'tests/integration/__init__.py' \\\r\n --path-glob 'tests/integration/event_source_url_check/*' \\\r\n --path-regex '.*/(journald_events|local-test-rules)\\.yml$' \\\r\n \ $NULL\r\n\r\n# remove all the branches than 'main'\r\ngit branch -a | grep -vw 'main' | xargs git branch -D\r\n# remove all the tags\r\ngit tag | xargs -n1 git tag -d\r\n\r\n# remove all the old git refs\r\nawk '/replace/ {print $2;}' .git/info/refs | xargs --no-run-if-empty -n1 git update-ref -d\r\n\r\n# cleanup the repository\r\nrm -rf .git/filter-repo/\r\ngit reflog expire --expire=all --expire-unreachable=all --rewrite --all\r\ngit gc --aggressive --prune=now\r\ngit fsck --full\r\ndu -hcs .git\r\n```\r\n\r\nThen filter a new clone of `event-driven-ansible`:\r\n```sh\r\n$ git clone https://github.com/ansible/event-driven-ansible.git eda-collection-to-community\r\n$ cd eda-collection-to-community/\r\neda-collection-to-community$ /path/to/filter-eda-collection.sh\r\n+ set -e\r\n[...]\r\n+ du -hcs .git\r\n192K .git\r\n192K total\r\n```\r\n(the output of the script was shortened for readability)\r\n\r\nThen create a local branch in this repository, and merge the `main` branch of the resulting filtered repository:\r\n```sh\r\n$ git remote add to-community /path/to/eda-collection-to-community/\r\n$ git fetch to-community\r\n$ git branch import-content-from-ansible-eda\r\n$ git checkout import-content-from-ansible-eda\r\n$ git merge --allow-unrelated-histories to-community/main \r\n```\r\nand then the additional couple of commits with followups (e.g. `manifest.txt`, `requirements.txt` were done according to the test runs.\r\n" change_url: https://github.com/ansible-collections/community.eda/pull/12 child_jobs: [] commit_id: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 event_id: 2e0bcb00-ebb8-11f0-8603-8075cca9f7aa executor: hostname: ze04.softwarefactory-project.io inventory_file: /var/lib/zuul/builds/5e300a308ca94ca6bad3fd72bebd313e/ansible/inventory.yaml log_root: /var/lib/zuul/builds/5e300a308ca94ca6bad3fd72bebd313e/work/logs result_data_file: /var/lib/zuul/builds/5e300a308ca94ca6bad3fd72bebd313e/work/results.json src_root: /var/lib/zuul/builds/5e300a308ca94ca6bad3fd72bebd313e/work/src work_root: /var/lib/zuul/builds/5e300a308ca94ca6bad3fd72bebd313e/work items: - branch: main change: '12' change_message: "Import content from ansible.eda\n\n##### SUMMARY\r\n\r\nImport few source plugins from the `ansible.eda` collection to this collection, together with their tests and the supporting bits for them.\r\n\r\nThe imported branch contains the whole history of the files.\r\n\r\n##### ISSUE TYPE\r\n\r\n- New Module Pull Request\r\n\r\n##### COMPONENT NAME\r\n\r\n- file\r\n- file_watch\r\n- journald\r\n- url_check\r\n\r\n##### ADDITIONAL INFORMATION\r\n\r\nThe importing was done in the following way.\r\n\r\nFirst, create a script (from now on called `filter-eda-collection.sh`) that uses `git filter-repo` to filter the https://github.com/ansible/event-driven-ansible repository:\r\n```sh\r\n#!/bin/sh\r\nset -x\r\nset -e\r\n\r\ngit filter-repo \\\r\n --path-regex '.*/(file|file_watch|journald|url_check|watchdog)\\.(py|json)$' \\\r\n --path-match 'tests/integration/utils.py' \\\r\n --path-match 'tests/integration/conftest.py' \\\r\n --path-match 'tests/integration/__init__.py' \\\r\n --path-glob 'tests/integration/event_source_url_check/*' \\\r\n --path-regex '.*/(journald_events|local-test-rules)\\.yml$' \\\r\n $NULL\r\n\r\n# remove all the branches than 'main'\r\ngit branch -a | grep -vw 'main' | xargs git branch -D\r\n# remove all the tags\r\ngit tag | xargs -n1 git tag -d\r\n\r\n# remove all the old git refs\r\nawk '/replace/ {print $2;}' .git/info/refs | xargs --no-run-if-empty -n1 git update-ref -d\r\n\r\n# cleanup the repository\r\nrm -rf .git/filter-repo/\r\ngit reflog expire --expire=all --expire-unreachable=all --rewrite --all\r\ngit gc --aggressive --prune=now\r\ngit fsck --full\r\ndu -hcs .git\r\n```\r\n\r\nThen filter a new clone of `event-driven-ansible`:\r\n```sh\r\n$ git clone https://github.com/ansible/event-driven-ansible.git eda-collection-to-community\r\n$ cd eda-collection-to-community/\r\neda-collection-to-community$ /path/to/filter-eda-collection.sh\r\n+ set -e\r\n[...]\r\n+ du -hcs .git\r\n192K \ .git\r\n192K total\r\n```\r\n(the output of the script was shortened for readability)\r\n\r\nThen create a local branch in this repository, and merge the `main` branch of the resulting filtered repository:\r\n```sh\r\n$ git remote add to-community /path/to/eda-collection-to-community/\r\n$ git fetch to-community\r\n$ git branch import-content-from-ansible-eda\r\n$ git checkout import-content-from-ansible-eda\r\n$ git merge --allow-unrelated-histories to-community/main \r\n```\r\nand then the additional couple of commits with followups (e.g. `manifest.txt`, `requirements.txt` were done according to the test runs.\r\n" change_url: https://github.com/ansible-collections/community.eda/pull/12 commit_id: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 patchset: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 project: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.eda name: ansible-collections/community.eda short_name: community.eda src_dir: src/github.com/ansible-collections/community.eda topic: null job: ansible-galaxy-importer jobtags: [] max_attempts: 3 message: SW1wb3J0IGNvbnRlbnQgZnJvbSBhbnNpYmxlLmVkYQoKIyMjIyMgU1VNTUFSWQ0KDQpJbXBvcnQgZmV3IHNvdXJjZSBwbHVnaW5zIGZyb20gdGhlIGBhbnNpYmxlLmVkYWAgY29sbGVjdGlvbiB0byB0aGlzIGNvbGxlY3Rpb24sIHRvZ2V0aGVyIHdpdGggdGhlaXIgdGVzdHMgYW5kIHRoZSBzdXBwb3J0aW5nIGJpdHMgZm9yIHRoZW0uDQoNClRoZSBpbXBvcnRlZCBicmFuY2ggY29udGFpbnMgdGhlIHdob2xlIGhpc3Rvcnkgb2YgdGhlIGZpbGVzLg0KDQojIyMjIyBJU1NVRSBUWVBFDQoNCi0gTmV3IE1vZHVsZSBQdWxsIFJlcXVlc3QNCg0KIyMjIyMgQ09NUE9ORU5UIE5BTUUNCg0KLSBmaWxlDQotIGZpbGVfd2F0Y2gNCi0gam91cm5hbGQNCi0gdXJsX2NoZWNrDQoNCiMjIyMjIEFERElUSU9OQUwgSU5GT1JNQVRJT04NCg0KVGhlIGltcG9ydGluZyB3YXMgZG9uZSBpbiB0aGUgZm9sbG93aW5nIHdheS4NCg0KRmlyc3QsIGNyZWF0ZSBhIHNjcmlwdCAoZnJvbSBub3cgb24gY2FsbGVkIGBmaWx0ZXItZWRhLWNvbGxlY3Rpb24uc2hgKSB0aGF0IHVzZXMgYGdpdCBmaWx0ZXItcmVwb2AgdG8gZmlsdGVyIHRoZSBodHRwczovL2dpdGh1Yi5jb20vYW5zaWJsZS9ldmVudC1kcml2ZW4tYW5zaWJsZSByZXBvc2l0b3J5Og0KYGBgc2gNCiMhL2Jpbi9zaA0Kc2V0IC14DQpzZXQgLWUNCg0KZ2l0IGZpbHRlci1yZXBvIFwNCiAgLS1wYXRoLXJlZ2V4ICcuKi8oZmlsZXxmaWxlX3dhdGNofGpvdXJuYWxkfHVybF9jaGVja3x3YXRjaGRvZylcLihweXxqc29uKSQnIFwNCiAgLS1wYXRoLW1hdGNoICd0ZXN0cy9pbnRlZ3JhdGlvbi91dGlscy5weScgXA0KICAtLXBhdGgtbWF0Y2ggJ3Rlc3RzL2ludGVncmF0aW9uL2NvbmZ0ZXN0LnB5JyBcDQogIC0tcGF0aC1tYXRjaCAndGVzdHMvaW50ZWdyYXRpb24vX19pbml0X18ucHknIFwNCiAgLS1wYXRoLWdsb2IgJ3Rlc3RzL2ludGVncmF0aW9uL2V2ZW50X3NvdXJjZV91cmxfY2hlY2svKicgXA0KICAtLXBhdGgtcmVnZXggJy4qLyhqb3VybmFsZF9ldmVudHN8bG9jYWwtdGVzdC1ydWxlcylcLnltbCQnIFwNCiAgJE5VTEwNCg0KIyByZW1vdmUgYWxsIHRoZSBicmFuY2hlcyB0aGFuICdtYWluJw0KZ2l0IGJyYW5jaCAtYSB8IGdyZXAgLXZ3ICdtYWluJyB8IHhhcmdzIGdpdCBicmFuY2ggLUQNCiMgcmVtb3ZlIGFsbCB0aGUgdGFncw0KZ2l0IHRhZyB8IHhhcmdzIC1uMSBnaXQgdGFnIC1kDQoNCiMgcmVtb3ZlIGFsbCB0aGUgb2xkIGdpdCByZWZzDQphd2sgJy9yZXBsYWNlLyB7cHJpbnQgJDI7fScgLmdpdC9pbmZvL3JlZnMgfCB4YXJncyAtLW5vLXJ1bi1pZi1lbXB0eSAtbjEgZ2l0IHVwZGF0ZS1yZWYgLWQNCg0KIyBjbGVhbnVwIHRoZSByZXBvc2l0b3J5DQpybSAtcmYgLmdpdC9maWx0ZXItcmVwby8NCmdpdCByZWZsb2cgZXhwaXJlIC0tZXhwaXJlPWFsbCAtLWV4cGlyZS11bnJlYWNoYWJsZT1hbGwgLS1yZXdyaXRlIC0tYWxsDQpnaXQgZ2MgLS1hZ2dyZXNzaXZlIC0tcHJ1bmU9bm93DQpnaXQgZnNjayAtLWZ1bGwNCmR1IC1oY3MgLmdpdA0KYGBgDQoNClRoZW4gZmlsdGVyIGEgbmV3IGNsb25lIG9mIGBldmVudC1kcml2ZW4tYW5zaWJsZWA6DQpgYGBzaA0KJCBnaXQgY2xvbmUgaHR0cHM6Ly9naXRodWIuY29tL2Fuc2libGUvZXZlbnQtZHJpdmVuLWFuc2libGUuZ2l0IGVkYS1jb2xsZWN0aW9uLXRvLWNvbW11bml0eQ0KJCBjZCBlZGEtY29sbGVjdGlvbi10by1jb21tdW5pdHkvDQplZGEtY29sbGVjdGlvbi10by1jb21tdW5pdHkkIC9wYXRoL3RvL2ZpbHRlci1lZGEtY29sbGVjdGlvbi5zaA0KKyBzZXQgLWUNClsuLi5dDQorIGR1IC1oY3MgLmdpdA0KMTkySyAgICAuZ2l0DQoxOTJLICAgIHRvdGFsDQpgYGANCih0aGUgb3V0cHV0IG9mIHRoZSBzY3JpcHQgd2FzIHNob3J0ZW5lZCBmb3IgcmVhZGFiaWxpdHkpDQoNClRoZW4gY3JlYXRlIGEgbG9jYWwgYnJhbmNoIGluIHRoaXMgcmVwb3NpdG9yeSwgYW5kIG1lcmdlIHRoZSBgbWFpbmAgYnJhbmNoIG9mIHRoZSByZXN1bHRpbmcgZmlsdGVyZWQgcmVwb3NpdG9yeToNCmBgYHNoDQokIGdpdCByZW1vdGUgYWRkIHRvLWNvbW11bml0eSAvcGF0aC90by9lZGEtY29sbGVjdGlvbi10by1jb21tdW5pdHkvDQokIGdpdCBmZXRjaCB0by1jb21tdW5pdHkNCiQgZ2l0IGJyYW5jaCBpbXBvcnQtY29udGVudC1mcm9tLWFuc2libGUtZWRhDQokIGdpdCBjaGVja291dCBpbXBvcnQtY29udGVudC1mcm9tLWFuc2libGUtZWRhDQokIGdpdCBtZXJnZSAtLWFsbG93LXVucmVsYXRlZC1oaXN0b3JpZXMgdG8tY29tbXVuaXR5L21haW4gDQpgYGANCmFuZCB0aGVuIHRoZSBhZGRpdGlvbmFsIGNvdXBsZSBvZiBjb21taXRzIHdpdGggZm9sbG93dXBzIChlLmcuIGBtYW5pZmVzdC50eHRgLCBgcmVxdWlyZW1lbnRzLnR4dGAgd2VyZSBkb25lIGFjY29yZGluZyB0byB0aGUgdGVzdCBydW5zLg0K patchset: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 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: 6303810c5fc44be3b18d2561af41581d5d7c3359 trusted/project_1/opendev.org/zuul/zuul-jobs: canonical_name: opendev.org/zuul/zuul-jobs checkout: master commit: a03cf7f556eb1a011069df69ac639f2aa5ae36d6 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: 6303810c5fc44be3b18d2561af41581d5d7c3359 untrusted/project_2/opendev.org/zuul/zuul-jobs: canonical_name: opendev.org/zuul/zuul-jobs checkout: master commit: a03cf7f556eb1a011069df69ac639f2aa5ae36d6 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.eda name: ansible-collections/community.eda short_name: community.eda src_dir: src/github.com/ansible-collections/community.eda projects: github.com/ansible-collections/community.eda: canonical_hostname: github.com canonical_name: github.com/ansible-collections/community.eda checkout: main checkout_description: zuul branch commit: 0a4f8c91ffd5bce6797a7e0e0737cb4577789f40 name: ansible-collections/community.eda required: false short_name: community.eda src_dir: src/github.com/ansible-collections/community.eda 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/12/head resources: {} tenant: ansible timeout: 1800 topic: null voting: true zuul_use_fetch_output: true