Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/add-issues-to-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Add issues to project

on:
issues:
types:
- opened
pull_request:
types:
- opened

jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e
with:
# You can target a project in a different organization or user account
# to the issue.
# For organization projects: https://github.com/orgs/ORG_NAME/projects/PROJECT_NUMBER
# For user projects: https://github.com/users/USER_NAME/projects/PROJECT_NUMBER
project-url: https://github.com/orgs/childrens-bti/projects/1
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}