-
Notifications
You must be signed in to change notification settings - Fork 285
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
34252a0
commit 0577997
Showing
2 changed files
with
8 additions
and
5 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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
branches: | ||
- '**' # This will trigger on push to any branch | ||
paths: | ||
- 'docs/recipes/**' | ||
- 'docs/recipes/**' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -34,6 +34,6 @@ jobs: | |
BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/}) | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add docs/recipes/index.json | ||
git commit -m "Update recipes index" | ||
git add docs/recipes/index.json docs/recipes/README.md | ||
git commit -m "Update recipes index and README" | ||
git push origin $BRANCH_NAME |