[TASK NAME] #119
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
# The `GH_WORKFLOW_TOKEN` of this flow needs the following permissions: | |
# - admin:org - as project boards are organization wide | |
# - repo:status, deployment, public_repo | |
# - project:read | |
# `GH_PROJECT_URL` is the URL of the Projectboard being used in the format: | |
# - https://github.com/orgs/<orgName>/projects/<projectNumber> | |
name: Add issue to project "SIDESTREAM" | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/sidestream-tech/projects/11 | |
github-token: ${{ secrets.GH_WORKFLOW_TOKEN }} |