diff options
author | 2021-09-01 11:29:10 -0700 | |
---|---|---|
committer | 2021-09-01 11:29:10 -0700 | |
commit | 68d01a8103a6c1fa4bdc4bee37b602c55cef79f7 (patch) | |
tree | 8eb5661cf6e2cf81adef3311107bf9326402b635 | |
parent | 5cb57a375a0fbd881dc7355d0e3fd74000c98788 (diff) | |
download | astro-68d01a8103a6c1fa4bdc4bee37b602c55cef79f7.tar.gz astro-68d01a8103a6c1fa4bdc4bee37b602c55cef79f7.tar.zst astro-68d01a8103a6c1fa4bdc4bee37b602c55cef79f7.zip |
fix bad project url in issue.yml
-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 9f7b660ce..589fd782c 100644 --- a/.github/workflows/issue.yml +++ b/.github/workflows/issue.yml @@ -18,19 +18,19 @@ jobs: uses: srggrs/assign-one-project-github-action@1.2.1 if: github.event.action == 'opened' && startsWith(github.event.issue.title, '🐛 BUG:') with: - project: 'https://github.com/srggrs/assign-one-project-github-action/projects/2' + 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:') with: - project: 'https://github.com/srggrs/assign-one-project-github-action/projects/3' + 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:') with: - project: 'https://github.com/srggrs/assign-one-project-github-action/projects/5' + project: 'https://github.com/snowpackjs/astro/projects/5' column_name: 'TODO'
\ No newline at end of file |