Skip to content

Commit

Permalink
2022.12.18:
Browse files Browse the repository at this point in the history
* fixed: bash/cache/accum-content.sh: missed `GH_WORKFLOW_FLAGS` variable export
* changed: bash/github/init-basic-workflow.sh: minor change
* changed: TODO.txt: todo update
  • Loading branch information
andry81 committed Dec 18, 2022
1 parent c94489f commit a9cef3f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
1 change: 0 additions & 1 deletion TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@
#
# 2022-12-01T18:10:16Z:
# * notice: GitHub Actions Run: https://github.com/andry81-devops/andry81-devops/actions/runs/3595313872 # 1608
# * notice: Commit Reference URL: https://github.com/andry81-cache/andry81-devops--gh-content-cache/commit/3ad502b8678204bfe569ecec2e449757ec3528cc
# * changed: `repo/andry81-devops/gh-workflow/badges/traffic/views/all.svg`:
# size=`2341 -> 2341` md5-hash=`3f1c20cbde264a3c50b5610b1b3732ba -> fb672181b7bd1a17014741fa5ac698ad`
# expired-delta=`+01:53:52` scheduled-timestamp=`2022-12-01T12:16:24Z -> 2022-12-01T16:16:24Z` update-timestamp=`2022-12-01T18:10:16Z`
Expand Down
5 changes: 5 additions & 0 deletions bash/cache/accum-content.sh
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,11 @@ for i in $("${YQ_CMDLINE_READ[@]}" '."content-config".entries[0].dirs|keys|.[]'
# declare input variables
tkl_export GH_WORKFLOW_ROOT "$GH_WORKFLOW_ROOT"
# export specific GitHub Actions workflow environment variables
if [[ -n "${GH_WORKFLOW_FLAGS+x}" ]]; then
tkl_export GH_WORKFLOW_FLAGS "$GH_WORKFLOW_FLAGS"
fi
tkl_export IS_STORED_FILE_EXIST "$is_index_file_prev_exist"
tkl_export STORED_FILE "$index_dir/$index_file"
Expand Down
5 changes: 2 additions & 3 deletions bash/github/init-basic-workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,8 @@ function gh_find_changelog_buf_arr_index_to_insert_from()
RETURN_VALUE=0

# [+]<name> | -<name>
# * With out the sign or with the plus - insert after.
# * With the minus and less than -1 - insert before (-2 - before first, -3 - before second, and so on).
# * -1 - insert at the end.
# * [+]<name> - insert after <name>.
# * -<name> - insert before <name>.
#
local changelog_msg_name_to_insert_from="$1"

Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2022.12.18:
* fixed: bash/cache/accum-content.sh: missed `GH_WORKFLOW_FLAGS` variable export
* changed: bash/github/init-basic-workflow.sh: minor change
* changed: TODO.txt: todo update

2022.12.16:
* new: bash/github: added `gh_write_to_changelog_named_text_ln` function to write named text into changelog buffer as an array of blocks with associated key names to be able to make unordered writes, for example, between blocks
* new: bash/github: added `ENABLE_CHANGELOG_BUF_ARR_AUTO_SERIALIZE` environment variable flag to control changelog buffer array auto serialization into and from `GHWF_CHANGELOG_BUF_*_ARR` variables in all dependent functions
Expand Down

0 comments on commit a9cef3f

Please sign in to comment.