match ui with wireframes on the creating cred flow (not complete yet) #5
Workflow file for this run
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: Add PR to Project Board | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
jobs: | |
add-to-project: | |
name: Add PR to Project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/add-to-project@v0.5.0 | |
with: | |
column: In Progress | |
# Replace these values with your specific project details | |
project-url: https://github.com/orgs/Cooperation-org/projects/4 | |
# or for repository projects: | |
# project-url: https://github.com/users/YOUR_USERNAME/projects/YOUR_PROJECT_NUMBER | |
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} | |