Kokkos, ninja: make clean
deletes generated cpp file and is not regenerated, causing compilation issues with rebuild when using ninja
#1888
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: Automatically at mention package teams if the package name is in the title | |
# Because evidently github won't let non-members do this. | |
on: | |
issues: | |
types: [opened, labeled] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
comment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Mention MueLu | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
if: (contains(github.event.action, 'labeled') && contains(github.event.label.name, 'MueLu')) || (contains(github.event.action, 'opened') && contains(github.event.issue.title, 'MueLu')) | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Automatic mention of the @trilinos/muelu team | |
- name: Mention Ifpack2 | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
if: (contains(github.event.action, 'labeled') && contains(github.event.label.name, 'Ifpack2')) || (contains(github.event.action, 'opened') && contains(github.event.issue.title, 'Ifpack2')) | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Automatic mention of the @trilinos/ifpack2 team | |
- name: Mention ROL | |
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 | |
if: (contains(github.event.action, 'labeled') && contains(github.event.label.name, 'ROL')) || (contains(github.event.action, 'opened') && contains(github.event.issue.title, 'ROL')) | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Automatic mention of @aj463 |