mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
success: clean up issue.yml from testing
This commit is contained in:
parent
be173d5f01
commit
fba0446666
1 changed files with 4 additions and 4 deletions
8
.github/workflows/issue.yml
vendored
8
.github/workflows/issue.yml
vendored
|
@ -2,7 +2,7 @@ name: Auto Assign Issues to Project
|
|||
|
||||
on:
|
||||
issues:
|
||||
types: [opened, reopened]
|
||||
types: [opened]
|
||||
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
@ -16,21 +16,21 @@ jobs:
|
|||
|
||||
- name: Assign Bugs to the Bug Tracker
|
||||
uses: srggrs/assign-one-project-github-action@1.2.1
|
||||
if: github.event.action == 'reopened' && startsWith(github.event.issue.title, '🐛 BUG:')
|
||||
if: github.event.action == 'opened' && startsWith(github.event.issue.title, '🐛 BUG:')
|
||||
with:
|
||||
project: 'https://github.com/snowpackjs/astro/projects/2'
|
||||
column_name: 'Needs Triage'
|
||||
|
||||
- name: Assign RFCs to the RFC Tracker
|
||||
uses: srggrs/assign-one-project-github-action@1.2.1
|
||||
if: github.event.action == 'reopened' && startsWith(github.event.issue.title, '💡 RFC:')
|
||||
if: github.event.action == 'opened' && startsWith(github.event.issue.title, '💡 RFC:')
|
||||
with:
|
||||
project: 'https://github.com/snowpackjs/astro/projects/3'
|
||||
column_name: 'Needs Discussion'
|
||||
|
||||
- name: Assign RFCs to the RFC Tracker
|
||||
uses: srggrs/assign-one-project-github-action@1.2.1
|
||||
if: github.event.action == 'reopened' && startsWith(github.event.issue.title, '📘 DOC:')
|
||||
if: github.event.action == 'opened' && startsWith(github.event.issue.title, '📘 DOC:')
|
||||
with:
|
||||
project: 'https://github.com/snowpackjs/astro/projects/5'
|
||||
column_name: 'TODO'
|
Loading…
Reference in a new issue