Teuchos_MathExpr: Parsing complex expressions #2423
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: Auto assign MueLu or Tpetra labeled or titled issues to MueLu or Tpetra Projects | |
on: | |
issues: | |
types: [opened, labeled] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
permissions: | |
contents: read | |
jobs: | |
assign_one_project: | |
permissions: | |
repository-projects: write # for srggrs/assign-one-project-github-action to assign issues and PRs to repo project | |
name: Assign to MueLu or Tpetra Project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add to MueLu Project | |
uses: srggrs/[email protected] | |
if: contains(github.event.label.name, 'MueLu') || contains(github.event.issue.title, 'MueLu') | |
with: | |
project: 'https://github.com/trilinos/Trilinos/projects/5' | |
column_name: 'Backlog' | |
- name: Add to Tpetra Project | |
uses: srggrs/[email protected] | |
if: contains(github.event.label.name, 'Tpetra') || contains(github.event.issue.title, 'Tpetra') | |
with: | |
project: 'https://github.com/trilinos/Trilinos/projects/2' | |
column_name: 'Needs Triage' |