This commit is contained in:
parent
5f33a4688f
commit
a14dc038f7
|
@ -27,9 +27,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git add --all
|
git add --all
|
||||||
git commit -m "Fix codestyle." || exit 0
|
git commit -m "Fix codestyle." || exit 0
|
||||||
echo ${${{ github.ref }}#refs/heads/}
|
|
||||||
|
|
||||||
- name: Push changes # push the modif to repo
|
- name: Push changes # push the modif to repo
|
||||||
|
run: |
|
||||||
|
git_branch=${{ github.ref }}
|
||||||
|
git_branch=${git_branch#refs/heads/}
|
||||||
|
echo $git_branch
|
||||||
uses: ad-m/github-push-action@master
|
uses: ad-m/github-push-action@master
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
Loading…
Reference in New Issue