Skip to content

Replace git checkout with datalad checkout in action workflows wherever appropriate #20

Replace git checkout with datalad checkout in action workflows wherever appropriate

Replace git checkout with datalad checkout in action workflows wherever appropriate #20

Workflow file for this run

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 }}