Skip to content

Commit

Permalink
commenting out synchronization workflow
Browse files Browse the repository at this point in the history
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.
42 changes: 21 additions & 21 deletions .github/workflows/sync-cli-readmes.yml
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

0 comments on commit 6b8afd8

Please sign in to comment.