Update README.md #4
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: Run Edge Test on RHEL 9.5.0 | |
on: | |
issue_comment: | |
types: | |
- created | |
jobs: | |
rhel-9-5: | |
if: github.repository == 'yih-redhat/tmt-demo' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add new compose id in compose.95 | |
run: | | |
echo 123456 >> compose/compose.95 | |
cat compose/compose.95 | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: RHEL-9-5-123456 | |
committer: cloudkitebot <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
branch: cpr | |
branch-suffix: random | |
delete-branch: true | |
title: RHEL-9-5-123456 | |
labels: auto-merge,RHEL-9.5.0 | |
body: | | |
RHEL 9.5 compose 123456 | |
- Date: ${{ steps.date.outputs.date }} | |
- Packages: | |
- p1 | |
- p2 | |
- p3 | |
- name: Create a project card to track compose test result | |
uses: peter-evans/create-or-update-project-card@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
project-name: RHEL Compose Test | |
column-name: RHEL-9-5 | |
issue-number: ${{ steps.cpr.outputs.pull-request-number }} |