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 de2d35c commit 58a0897Copy full SHA for 58a0897
.github/workflows/cla.yml
@@ -1,15 +1,22 @@
1
-name: Check Scala CLA
+name: Scala CLA
2
on:
3
pull_request:
4
- types: opened
5
branches-ignore:
6
- 'language-reference-stable'
+ push:
7
+ branches:
8
+ - 'language-reference-stable'
9
+ merge_group:
10
+permissions:
11
+ contents: write
12
+ pull-requests: write
13
14
jobs:
15
check:
16
runs-on: ubuntu-latest
17
steps:
18
- uses: actions/checkout@v4
19
- run: ./project/scripts/check-cla.sh
20
+ if: github.event_name == 'pull_request'
21
env:
22
AUTHOR: ${{ github.event.pull_request.user.login }}
0 commit comments