Skip to content

Commit 203b7a0

Browse files
authored
Properly evaluate GITHUB_ACTOR (TheAlgorithms#1594)
* fix: use `GITHUB_ACTOR` in `git config` * Updated Documentation in README.md --------- Co-authored-by: vil02 <[email protected]>
1 parent 5a7e8d1 commit 203b7a0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

‎.github/workflows/UpdateDirectory.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525

2626
- name: Configure Github Action
2727
run: |
28-
git config --global user.name github-actions
29-
git config --global user.email '${GITHUB_ACTOR}@users.noreply.github.com'
28+
git config --global user.name "$GITHUB_ACTOR"
29+
git config --global user.email "$[email protected]"
3030
3131
- name: 🤓 Commit & push new Directory (if needed)
3232
run: |

‎DIRECTORY.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@
104104
***Vectors**
105105
*[Vector2](Data-Structures/Vectors/Vector2.js)
106106
***Dynamic-Programming**
107+
*[Abbreviation](Dynamic-Programming/Abbreviation.js)
107108
*[CatalanNumbers](Dynamic-Programming/CatalanNumbers.js)
108109
*[ClimbingStairs](Dynamic-Programming/ClimbingStairs.js)
109110
*[CoinChange](Dynamic-Programming/CoinChange.js)
@@ -302,6 +303,7 @@
302303
*[KochSnowflake](Recursive/KochSnowflake.js)
303304
*[LetterCombination](Recursive/LetterCombination.js)
304305
*[Palindrome](Recursive/Palindrome.js)
306+
*[PalindromePartitioning](Recursive/PalindromePartitioning.js)
305307
*[Partition](Recursive/Partition.js)
306308
*[SubsequenceRecursive](Recursive/SubsequenceRecursive.js)
307309
*[TowerOfHanoi](Recursive/TowerOfHanoi.js)

0 commit comments

Comments
(0)