We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b813a commit e413d56Copy full SHA for e413d56
.github/workflows/add-dependabot-pr-to-project.yml
@@ -1,12 +1,14 @@
1
+---
2
name: Assign Dependabot PR to Compute Foundation Project
3
4
on:
5
workflow_dispatch:
6
pull_request:
7
types: [opened, reopened, labeled]
8
-env:
9
- ADD_TO_PROJECT_PAT: ${{ secrets.ADD_TO_PROJECT_PAT }}
+permissions:
10
+ contents: read
11
+ pull-requests: write
12
13
jobs:
14
add-to-project:
@@ -16,5 +18,5 @@ jobs:
16
18
- uses: actions/add-to-project@v0.5.0
17
19
with:
20
project-url: https://github.com/orgs/github/projects/5753/ # Compute Foundation Project Board
- github-token: ${{ env.ADD_TO_PROJECT_PAT }}
- labeled: dependencies
21
+ github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
22
+ labeled: dependencies,external-dependency
0 commit comments