0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/.github/workflows/issue.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1.1 KiB
YAML
Raw Normal View History

2021-09-01 13:27:29 -05:00
name: Auto Assign Issues to Project
2021-09-01 11:53:42 -05:00
on:
issues:
types: [opened]
2021-09-01 11:53:42 -05:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
auto_assign_issues:
runs-on: ubuntu-latest
name: Auto-assign new issues to projects
steps:
- name: Assign Bugs to the Bug Tracker
uses: srggrs/assign-one-project-github-action@1.3.1
if: github.event.action == 'opened' && startsWith(github.event.issue.title, '🐛 BUG:')
2021-09-01 11:53:42 -05:00
with:
2021-11-23 17:47:05 -05:00
project: 'https://github.com/withastro/astro/projects/2'
2021-09-01 11:53:42 -05:00
column_name: 'Needs Triage'
- name: Assign RFCs to the RFC Tracker
uses: srggrs/assign-one-project-github-action@1.3.1
if: github.event.action == 'opened' && startsWith(github.event.issue.title, '💡 RFC:')
2021-09-01 11:53:42 -05:00
with:
2021-11-23 17:47:05 -05:00
project: 'https://github.com/withastro/astro/projects/3'
2021-09-18 00:51:54 -05:00
column_name: 'Discussing'
2021-09-01 11:53:42 -05:00
2021-09-18 00:51:54 -05:00
- name: Assign RFCs to the Docs Tracker
uses: srggrs/assign-one-project-github-action@1.3.1
if: github.event.action == 'opened' && startsWith(github.event.issue.title, '📘 DOC:')
2021-09-01 11:53:42 -05:00
with:
2021-11-23 17:47:05 -05:00
project: 'https://github.com/withastro/astro/projects/5'
2021-09-01 17:57:36 -05:00
column_name: 'TODO'