File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v4
13
+ with :
14
+ token : ${{ secrets.GH_TOKEN }}
13
15
- uses : actions/setup-go@v4
14
16
with :
15
17
go-version : ' ^1.17.1'
@@ -27,12 +29,14 @@ jobs:
27
29
git config user.email [email protected]
28
30
git add doc/orgmode.txt
29
31
# Only commit and push if we have changes
30
- git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin master -u $GH_TOKEN )
32
+ git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push)
31
33
32
34
api_docgen :
33
35
runs-on : ubuntu-latest
34
36
steps :
35
37
- uses : actions/checkout@v4
38
+ with :
39
+ token : ${{ secrets.GH_TOKEN }}
36
40
- name : Install Neovim
37
41
uses : rhysd/action-setup-vim@v1
38
42
id : neovim
55
59
git config user.email [email protected]
56
60
git add doc/orgmode_api.txt
57
61
# Only commit and push if we have changes
58
- git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin master -u $GH_TOKEN )
62
+ git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push)
You can’t perform that action at this time.
0 commit comments