File tree Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Expand file tree Collapse file tree 2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 1
1
name : CI
2
2
3
3
on :
4
- pull_request :
5
- branches :
6
- - " *"
4
+ push :
7
5
paths-ignore :
8
6
- " .github/**"
9
7
- " .gitignore"
Original file line number Diff line number Diff line change 5
5
- ' Gemfile.lock'
6
6
- ' Gemfile'
7
7
8
- permissions :
9
- contents : write
10
- pull-requests : write
11
-
12
8
jobs :
13
9
update-rbis :
14
10
runs-on : ubuntu-latest
20
16
uses : actions/checkout@v4
21
17
with :
22
18
ref : ${{ github.event.pull_request.head.sha }}
19
+ token : ${{ secrets.LUNCHMONEY_PAT_TOKEN }}
23
20
fetch-depth : 0
24
21
-
25
22
name : Setup Ruby
33
30
name : Commit RBIs
34
31
run : |
35
32
git checkout ${{ github.head_ref }}
36
- git config user.name "Dependabot RBI Updater"
37
- git config user.email action@github.com
38
- git add sorbet/*
39
- git diff-index --quiet HEAD || git commit -m "[dependabot skip] Update RBIs"
33
+ git config --local user.name "Dependabot RBI Updater"
34
+ git config --local user.email action@github.com
35
+ git commit -a -m "[dependabot skip] Update RBIs"
40
36
git push
37
+
You can’t perform that action at this time.
0 commit comments