diff --git a/.github/workflows/add_new_pr_to_project.yaml b/.github/workflows/add_new_pr_to_project.yaml new file mode 100644 index 00000000..1d2889f0 --- /dev/null +++ b/.github/workflows/add_new_pr_to_project.yaml @@ -0,0 +1,17 @@ +name: Add new PR to Project + +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: + project-url: https://github.com/users/langchain4j/projects/2 + github-token: ${{ secrets.GITHUB_TOKEN }}