Fix issue with difference in ansible yum output. #8
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: Verify PR has JIRA ticket and issue number | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
branches: | |
- main | |
permissions: | |
contents: read | |
pull-requests: write # Need write to make comments | |
jobs: | |
pr_issue_jira: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
repository: redhat-performance/pr-requirements | |
path: pr-requirements | |
ref: v1.0.0 | |
- uses: ./pr-requirements | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jira_ticket: true | |
jira_project: RPOPC | |
jira_url: https://issues.redhat.com |