internal/add indexing scripts into backend Docker #201
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: New issue assign | |
on: | |
issues: | |
types: [opened] | |
env: | |
MY_GITHUB_TOKEN: ${{ secrets.PAT_ISSUE_MGMT }} | |
jobs: | |
assign_one_project: | |
runs-on: ubuntu-latest | |
name: Assign to One Project | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Assign NEW issues to dspace-project | |
uses: ./.github/actions/project-management-action | |
if: github.event.action == 'opened' | |
with: | |
project: 'https://github.com/orgs/dataquest-dev/projects/6' | |
column_name: 'Backlog' |