|
|
|
@ -1,4 +1,4 @@ |
|
|
|
name: MSHUWAP Issue Handler |
|
|
|
name: Check if issue is a known issue |
|
|
|
|
|
|
|
|
|
|
|
on: |
|
|
|
on: |
|
|
|
issues: |
|
|
|
issues: |
|
|
|
@ -7,14 +7,13 @@ on: |
|
|
|
jobs: |
|
|
|
jobs: |
|
|
|
check_keywords: |
|
|
|
check_keywords: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
|
|
|
steps: |
|
|
|
steps: |
|
|
|
- name: Checkout repository |
|
|
|
- name: Checkout repository |
|
|
|
uses: actions/checkout@v3 |
|
|
|
uses: actions/checkout@v3 |
|
|
|
|
|
|
|
|
|
|
|
- name: Log check message |
|
|
|
- name: Log dynamic message with issue title |
|
|
|
run: | |
|
|
|
run: | |
|
|
|
echo "Check if issue is a known issue" |
|
|
|
echo "Checking issue: ${{ github.event.issue.title }} for known keywords..." |
|
|
|
|
|
|
|
|
|
|
|
- name: Check for keywords in issue title and body |
|
|
|
- name: Check for keywords in issue title and body |
|
|
|
id: check_keywords |
|
|
|
id: check_keywords |
|
|
|
|