We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a26cd56 commit 080c83fCopy full SHA for 080c83f
1 file changed
.github/workflows/cla.yml
@@ -2,16 +2,22 @@ name: CLA Assistant
2
3
on:
4
pull_request_target:
5
- types: [opened, synchronize]
+ types: [opened, synchronize, reopened]
6
+
7
+permissions:
8
+ contents: read
9
+ pull-requests: write
10
+ statuses: write
11
12
jobs:
13
cla:
14
+ name: cla
15
runs-on: ubuntu-latest
16
steps:
17
- name: CLA Assistant
18
uses: contributor-assistant/github-action@v2
19
+ env:
20
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
with:
22
path-to-cla-document: CONTRIBUTING.md
23
branch: main
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments