When using the issue assigned trigger, neither setting content_id to github.event.issue.node_id or github.event.issue.id works. Both results in a Item not found with ID error.
Workflow config:
name: Update assigned issues in Webrecorder Projectson:
issues:
types: [assigned]jobs:
update-project-column:
runs-on: ubuntu-lateststeps:
- name: Update statusid: update_statususes: github/update-project-action@v2with:
github_token: ${{ secrets.ACTIONS_TOKEN }}organization: webrecorderproject_number: 9content_id: ${{ github.event.issue.node_id }}field: Statusvalue: TodoAlso tried setting content_id: ${{ github.event.issue.id }}
When using the issue
assignedtrigger, neither settingcontent_idtogithub.event.issue.node_idorgithub.event.issue.idworks. Both results in aItem not found with IDerror.Workflow config:
Also tried setting
content_id: ${{ github.event.issue.id }}