I would like to be able to set status and other custom fields to issues added to a project
For example, if I'd like to set a Status = Triage and Stack = nodejs
jobs:
add-to-project:
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v0.4.0
with:
project-url: https://github.com/orgs/zazuko/projects/23
github-token: ${{ secrets.BACKLOG_PAT }}
set:
+ Status: Triage
+ Stack: nodejs
I would like to be able to set status and other custom fields to issues added to a project
For example, if I'd like to set a
Status = TriageandStack = nodejsjobs: add-to-project: runs-on: ubuntu-latest steps: - uses: actions/add-to-project@v0.4.0 with: project-url: https://github.com/orgs/zazuko/projects/23 github-token: ${{ secrets.BACKLOG_PAT }} set: + Status: Triage + Stack: nodejs