-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ruslan Senatorov <[email protected]>
- Loading branch information
1 parent
12806b5
commit b3cea50
Showing
1 changed file
with
2 additions
and
9 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 |
---|---|---|
|
@@ -21,15 +21,8 @@ jobs: | |
git config --global user.name "$GITHUB_ACTOR" | ||
git config --global user.email "[email protected]" | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | ||
- name: Commit changes | ||
- name: Commit and push changes | ||
run: | | ||
git add DIRECTORY.md README.md | ||
git commit -m "SENATOROV updating DIRECTORY.md and README.md" || echo "No changes to commit" | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
title: "Update DIRECTORY.md and README.md" | ||
body: "This PR updates the DIRECTORY.md and README.md files with the latest changes." | ||
base: slyciaqe # The branch you want to merge into | ||
head: ${{ github.sha }} # The branch with the changes (current commit) | ||
git push --force origin ${{ github.ref_name }} |