diff options
author | 2021-09-01 11:33:09 -0700 | |
---|---|---|
committer | 2021-09-01 11:33:09 -0700 | |
commit | fba0446666495055fffcdd5d10b6715703308e48 (patch) | |
tree | 8eb5661cf6e2cf81adef3311107bf9326402b635 | |
parent | be173d5f01df1e6733ea6e6afb78b7bee69e704e (diff) | |
download | astro-fba0446666495055fffcdd5d10b6715703308e48.tar.gz astro-fba0446666495055fffcdd5d10b6715703308e48.tar.zst astro-fba0446666495055fffcdd5d10b6715703308e48.zip |
success: clean up issue.yml from testing
-rw-r--r-- | .github/workflows/issue.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/issue.yml b/.github/workflows/issue.yml index 590b1be1e..589fd782c 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -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'
\ No newline at end of file |