RHEL10 Clients coverage in Content, some rhel7 and 8 content bumped to rhel9 and 10 #9354
Workflow file for this run
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: Dependabot Auto Merge | |
on: pull_request | |
permissions: | |
pull-requests: write | |
jobs: | |
dependabot: | |
name: dependabot-auto-merge | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.user.login == 'dependabot[bot]' | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/fetch-metadata@v2 | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Find the tests for the dependency requirement | |
id: yaml | |
uses: mikefarah/yq@master | |
with: | |
cmd: yq eval '.["${{ steps.metadata.outputs.dependency-names }}"|split("[")[0]]' ./.github/dependency_tests.yaml | |
- name: Add the PRT Comment | |
if: steps.yaml.outputs.result != 'null' | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
trigger: test-robottelo\r | |
pytest: ${{ steps.yaml.outputs.result }} | |
- name: Wait for PRT checks to get initiated | |
if: steps.yaml.outputs.result != 'null' | |
run: | | |
echo "Waiting for ~ 10 mins, PRT to be initiated." && sleep 600 | |
- name: Fetch and Verify the PRT status | |
if: steps.yaml.outputs.result != 'null' | |
id: outcome | |
uses: omkarkhatavkar/wait-for-status-checks@main | |
with: | |
ref: ${{ github.head_ref }} | |
context: 'Robottelo-Runner' | |
wait-interval: 60 | |
count: 100 | |
- name: Wait for other status checks to Pass | |
id: waitforstatuschecks | |
uses: lewagon/[email protected] | |
with: | |
ref: ${{ github.head_ref }} | |
repo-token: ${{ secrets.CHERRYPICK_PAT }} | |
wait-interval: 60 | |
running-workflow-name: 'dependabot-auto-merge' | |
allowed-conclusions: success,skipped | |
- id: automerge | |
name: Auto merge of dependabot PRs. | |
uses: "pascalgn/[email protected]" | |
env: | |
GITHUB_TOKEN: "${{ secrets.CHERRYPICK_PAT }}" | |
MERGE_LABELS: "dependencies" | |
MERGE_METHOD: "squash" | |
MERGE_RETRIES: 5 | |
MERGE_RETRY_SLEEP: 900000 | |
- name: Auto Merge Status | |
run: | | |
if [ "${{ steps.automerge.outputs.mergeResult }}" == 'merged' ]; then | |
echo "Pull request ${{ steps.automerge.outputs.pullRequestNumber }} is Auto Merged !" | |
else | |
echo "::error Auto Merge for Pull request failed !" | |
exit 1 | |
fi |