-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c728f5
commit 8a17dbc
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,23 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- run: | | ||
git config --list | ||
echo 'config end' | ||
echo 'full_name: ${{ github.event.pull_request.head.repo.full_name }}' | ||
echo 'head-ref1: ${{ github.event.pull_request.head.ref }}' | ||
echo 'head-ref2: ${{github.head_ref}}' | ||
git remote add 'fork' https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git | ||
git remote -v | ||
git config --global user.email '[email protected]' | ||
git config --global user.name 'Eclipse Releng Bot' | ||
echo 'Hello World' > myfile.txt | ||
git add --all * | ||
git status | ||
git commit -m "Bump version(s) for 4.34 stream" | ||
git status | ||
git log --patch -2 | ||
#TODO: make version dynamic and mail and bot name configurable?! | ||
|
||
|
||
# See | ||
# https://github.com/actions/toolkit | ||
|