Add ansible_collections_path in job invocation advanced_fields (#1463… #526
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Send trigger for updating robottelo image on quay. | |
on: | |
push: | |
branches: | |
- master | |
- 6.*.z | |
jobs: | |
trigger-robottelo-workflow: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger workflow in robottelo repo | |
run: | | |
curl -L \ | |
-X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.CHERRYPICK_PAT }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
https://api.github.com/repos/SatelliteQE/robottelo/actions/workflows/update_robottelo_image.yml/dispatches \ | |
-d '{"ref":"'"${GITHUB_REF##*/}"'"}' |