-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commenting out synchronization workflow
Signed-off-by: Amber Torrise <at895452@broadcom.net>
- Loading branch information
Amber Torrise
committed
Dec 1, 2023
1 parent
3c14c83
commit 6b8afd8
Showing
1 changed file
with
21 additions
and
21 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 |
---|---|---|
@@ -1,26 +1,26 @@ | ||
name: Sync Files on README.md Changes | ||
# name: Sync Files on README.md Changes | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**/README.md' | ||
# on: | ||
# push: | ||
# paths: | ||
# - '**/README.md' | ||
|
||
jobs: | ||
sync-files: | ||
runs-on: ubuntu-latest | ||
# jobs: | ||
# sync-files: | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v2 | ||
|
||
- name: Sync files | ||
run: | | ||
cp "${{ github.workspace }}/README.md" "${{ github.workspace }}/packages/cli/README.md" | ||
# - name: Sync files | ||
# run: | | ||
# cp "${{ github.workspace }}/README.md" "${{ github.workspace }}/packages/cli/README.md" | ||
|
||
- name: Commit then Push Changes | ||
run: | | ||
git config --global user.name ${{ secrets.ZOWE_ROBOT_USER }} | ||
git config --global user.email ${{ secrets.ZOWE_ROBOT_EMAIL }} | ||
git add "${{ github.workspace }}/packages/cli/README.md" | ||
git commit -m "Synching cli readmes" | ||
git push origin HEAD | ||
# - name: Commit then Push Changes | ||
# run: | | ||
# git config --global user.name ${{ secrets.ZOWE_ROBOT_USER }} | ||
# git config --global user.email ${{ secrets.ZOWE_ROBOT_EMAIL }} | ||
# git add "${{ github.workspace }}/packages/cli/README.md" | ||
# git commit -m "Synching cli readmes" | ||
# git push origin HEAD |