[BUG] Unable to build the source code #158
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: Reconcile GitHub Issue | |
on: | |
issues: | |
types: | |
- opened | |
- edited | |
- closed | |
- reopened | |
- labeled | |
- unlabeled | |
# This prevents potential race conditions by only allowing this action to handle | |
# one update at a time for a given issue. | |
concurrency: | |
group: reconcile-issue-${{ github.event.issue.number }} | |
cancel-in-progress: true | |
jobs: | |
reconcile-issue: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: needs-triage | |
uses: konveyor/github-actions/require-matching-label@main | |
with: | |
missingComment: | | |
This issue is currently awaiting triage. | |
If contributors determine this is a relevant issue, they will accept it by applying the `triage/accepted` label and provide further guidance. | |
The `triage/accepted` label can be added by org members by writing `/triage accepted` in a comment. | |
missingLabel: "needs-triage" | |
regexp: "^triage/accepted$" | |
- name: needs-kind | |
uses: konveyor/github-actions/require-matching-label@main | |
with: | |
missingLabel: "needs-kind" | |
regexp: "^kind/" | |
- name: needs-priority | |
uses: konveyor/github-actions/require-matching-label@main | |
with: | |
missingLabel: "needs-priority" | |
regexp: "^priority/" | |
- name: Reconcile Issue | |
id: create | |
uses: konveyor/github-actions/reconcile-issue@main | |
with: | |
jiraBaseUrl: https://issues.redhat.com | |
jiraToken: ${{ secrets.JIRA_API_TOKEN }} | |
jiraProject: MTRHO | |
requireMissingLabels: needs-triage, needs-kind, needs-priority | |
additionalLabels: community | |
addWatchers: [email protected] |