Hi , i am not able to setup the project locally . There are multiple error coming while running. Can anyone help me out. #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Assign Issues to Triage column in Sprint Planning Project Board | |
on: | |
issues: | |
types: [opened] | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
issue_opened: | |
name: issue_opened | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Move issue to "Triage"' | |
uses: leonsteinhaeuser/project-beta-automations@d1c1261558118c0876fdb2b57a649303925e5a70 # v2.1.0 | |
with: | |
gh_token: ${{ secrets.MY_GITHUB_TOKEN }} | |
organization: atsign-foundation | |
project_id: 8 | |
resource_node_id: ${{ github.event.issue.node_id }} | |
status_value: "Triage" |