Skip to content

Commit

Permalink
Docs/enhance docs (#324)
Browse files Browse the repository at this point in the history
* doc: 📝 enhance documentation (#226)

* doc: 📝 enhance documentation (#226)

* doc: 📝 enhance documentation (#226)

* fix: 🐛 enahnce output readability

* doc: 📝 increase version
  • Loading branch information
AndreasAugustin committed Feb 20, 2023
1 parent d302a26 commit 14e180b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions_template_sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: actions-template-sync
uses: AndreasAugustin/actions-template-sync@v0.7.2
uses: AndreasAugustin/actions-template-sync@v0.7.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_repo_path: AndreasAugustin/template
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: actions-template-sync
uses: AndreasAugustin/actions-template-sync@v0.7.2
uses: AndreasAugustin/actions-template-sync@v0.7.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_repo_path: <owner/repo>
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
private_key: ${{ secrets.PRIVATE_KEY }}

- name: actions-template-sync
uses: AndreasAugustin/actions-template-sync@v0.7.2
uses: AndreasAugustin/actions-template-sync@v0.7.3
with:
github_token: ${{ steps.generate_token.outputs.token }}
source_repo_path: <owner/repo>
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: actions-template-sync
uses: AndreasAugustin/actions-template-sync@v0.7.2
uses: AndreasAugustin/actions-template-sync@v0.7.3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_repo_path: ${{ secrets.SOURCE_REPO_PATH }} # <owner/repo>, should be within secrets
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
uses: actions/checkout@v3
-
name: Test action step PAT
uses: AndreasAugustin/actions-template-sync@v0.7.2
uses: AndreasAugustin/actions-template-sync@v0.7.3
with:
github_token: ${{ secrets.SOURCE_REPO_PAT }}
source_repo_path: ${{ secrets.SOURCE_REPO_PATH }} # <owner/repo>, should be within secrets
Expand Down
2 changes: 1 addition & 1 deletion src/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env bash
set -e
# set -u
set -x
# set -x

# shellcheck source=src/sync_common.sh
source sync_common.sh
Expand Down
2 changes: 1 addition & 1 deletion src/sync_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e
# set -u
set -x
# set -x

#######################################
# write a message to STDERR.
Expand Down
2 changes: 1 addition & 1 deletion src/sync_template.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e
# set -u
set -x
# set -x

# shellcheck source=src/sync_template.sh
source sync_common.sh
Expand Down

0 comments on commit 14e180b

Please sign in to comment.