Skip to content

Commit

Permalink
added workflow to automatically add new PRs to the project
Browse files Browse the repository at this point in the history
  • Loading branch information
LangChain4j committed Nov 21, 2024
1 parent 2218d65 commit a2b8c40
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/add_new_pr_to_project.yaml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
project-url: https://github.com/users/langchain4j/projects/2
github-token: ${{ secrets.GH_TOKEN_ADD_NEW_PRS_TO_PROJECT }}

0 comments on commit a2b8c40

Please sign in to comment.