Add GRACE to model zoo #22
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: Assign Issue to User | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
assignUser: | |
if: ${{ startsWith(github.event.issue.title, 'New Model:') || startsWith(github.event.issue.title, 'Update Model:') }} | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: 'Auto-assign issue' | |
uses: pozil/auto-assign-issue@v1 | |
with: | |
assignees: ${{ github.event.issue.user.login }} | |
repo-token: ${{ secrets.GH_TOKEN }} |