File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 16
16
- name : Checkout repository
17
17
uses : actions/checkout@v2
18
18
with :
19
- fetch-depth : 0
19
+ fetch-depth : 0 # Esto es necesario para acceder al historial completo
20
20
21
21
- name : Set up Node.js
22
22
uses : actions/setup-node@v2
@@ -46,16 +46,17 @@ jobs:
46
46
BADGE_CONTENT=$(cat coverage/coverage_badge.md)
47
47
sed -i "s|!\[Coverage\](.*)|${BADGE_CONTENT}|" README.md
48
48
49
+ - name : Show repository information
50
+ run : |
51
+ echo "Current Repository: $(git remote -v)"
52
+
49
53
- name : Commit and push changes
50
54
run : |
51
55
git config --local user.email "${{ secrets.GIT_USER_EMAIL }}"
52
56
git config --local user.name "${{ secrets.GIT_USER_NAME }}"
53
57
git add README.md
54
58
git commit -m "Update coverage badge"
55
- git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/OWNER/REPO.git HEAD:update-coverage-badge
56
-
57
- env :
58
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
59
+ git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/Mipmipp/localstack-ts-api-gateway-lambda-dynamodb-crud-example.git HEAD:update-coverage-badge
59
60
60
61
- name : Create Pull Request
61
62
uses : peter-evans/create-pull-request@v3
You can’t perform that action at this time.
0 commit comments