Add missing timeout when calling entity with timeout (#1311) (#1312) #273
This file contains hidden or 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##*/}"'"}' |