Skip to content

Commit e3b813a

Browse files
committed
Create add-dependabot-pr-to-project.yml
1 parent ab6429e commit e3b813a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Assign Dependabot PR to Compute Foundation Project
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
types: [opened, reopened, labeled]
7+
8+
env:
9+
ADD_TO_PROJECT_PAT: ${{ secrets.ADD_TO_PROJECT_PAT }}
10+
11+
jobs:
12+
add-to-project:
13+
name: Add to Compute Foundation Project Board
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/[email protected]
17+
with:
18+
project-url: https://github.com/orgs/github/projects/5753/ # Compute Foundation Project Board
19+
github-token: ${{ env.ADD_TO_PROJECT_PAT }}
20+
labeled: dependencies

0 commit comments

Comments
 (0)