diff options
author | 2021-09-01 11:32:08 -0700 | |
---|---|---|
committer | 2021-09-01 11:32:08 -0700 | |
commit | be173d5f01df1e6733ea6e6afb78b7bee69e704e (patch) | |
tree | 8ae877955473fe4957ca14ec5488e2f0cd14cbaf | |
parent | 8480103e3bdc50a42d88bbb352e11c8210cc0abe (diff) | |
download | astro-be173d5f01df1e6733ea6e6afb78b7bee69e704e.tar.gz astro-be173d5f01df1e6733ea6e6afb78b7bee69e704e.tar.zst astro-be173d5f01df1e6733ea6e6afb78b7bee69e704e.zip |
issue.yml testing
-rw-r--r-- | .github/workflows/issue.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml index 57949f212..590b1be1e 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -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 == 'opened' && startsWith(github.event.issue.title, '🐛 BUG:') + if: github.event.action == 'reopened' && 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 == 'opened' && startsWith(github.event.issue.title, '💡 RFC:') + if: github.event.action == 'reopened' && 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 == 'opened' && startsWith(github.event.issue.title, '📘 DOC:') + if: github.event.action == 'reopened' && startsWith(github.event.issue.title, '📘 DOC:') with: project: 'https://github.com/snowpackjs/astro/projects/5' column_name: 'TODO'
\ No newline at end of file |