Long load times filtering pt 3 #2282
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 to One Project | |
on: | |
issues: | |
types: [opened, labeled] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
assign_one_project: | |
runs-on: ubuntu-latest | |
name: Assign to One Project | |
steps: | |
- name: Assign NEW issues to the Backlog project | |
uses: srggrs/[email protected] | |
if: github.event.action == 'opened' && github.event.issue != null | |
with: | |
project: 'https://github.com/CityOfDetroit/bloom/projects/1' | |
column_name: 'Needs triage' | |
- name: Assign NEW issues to the Milestones project | |
uses: srggrs/[email protected] | |
if: github.event.action == 'opened' && github.event.issue != null | |
with: | |
project: 'https://github.com/CityOfDetroit/bloom/projects/2' | |
column_name: 'Triage' |