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 ffbc51a commit 5d5a5b1Copy full SHA for 5d5a5b1
.github/workflows/dependabot-rbi-updater.yml
@@ -33,9 +33,12 @@ jobs:
33
-
34
name: Commit RBIs
35
run: |
36
- git checkout ${{ github.head_ref }}
37
git config --local user.name "Dependabot RBI Updater"
38
git config --local user.email action@github.com
39
- git add sorbet/*
40
- git diff-index --quiet HEAD || git commit -m "[dependabot skip] Update RBIs"
41
- git push
+ git commit -a -m "[dependabot skip] Update RBIs"
+ -
+ name: Push changes
+ uses: ad-m/github-push-action@v0.8.0
42
+ with:
43
+ github_token: ${{ secrets.GITHUB_TOKEN }}
44
+ branch: ${{ github.head_ref }}
0 commit comments