Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tj-actions/auto-doc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.7.2
Choose a base ref
...
head repository: tj-actions/auto-doc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.7.3
Choose a head ref
  • 5 commits
  • 2 files changed
  • 3 contributors

Commits on Dec 31, 2022

  1. Copy the full SHA
    27fe883 View commit details
  2. Merge pull request #400 from tj-actions/upgrade-to-v1.7.2

    Upgraded to v1.7.2
    repo-ranger[bot] authored Dec 31, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ac17a9b View commit details

Commits on Jan 3, 2023

  1. Update action.yml

    jackton1 authored Jan 3, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9d42253 View commit details
  2. Update README.md

    jackton1 authored Jan 3, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d467978 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    987c4ed View commit details
Showing with 18 additions and 4 deletions.
  1. +13 −4 HISTORY.md
  2. +5 −0 action.yml
17 changes: 13 additions & 4 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# Changelog

## [v1.7.1](https://github.com/tj-actions/auto-doc/tree/v1.7.1) (2022-12-30)
## [v1](https://github.com/tj-actions/auto-doc/tree/v1) (2022-12-31)

[Full Changelog](https://github.com/tj-actions/auto-doc/compare/v1.7.2...v1)

[Full Changelog](https://github.com/tj-actions/auto-doc/compare/v1...v1.7.1)
## [v1.7.2](https://github.com/tj-actions/auto-doc/tree/v1.7.2) (2022-12-31)

## [v1](https://github.com/tj-actions/auto-doc/tree/v1) (2022-12-30)
[Full Changelog](https://github.com/tj-actions/auto-doc/compare/v1.7.1...v1.7.2)

**Merged pull requests:**

- chore: update to remove trailing br tags [\#399](https://github.com/tj-actions/auto-doc/pull/399) ([jackton1](https://github.com/jackton1))
- Upgraded to v1.7.1 [\#398](https://github.com/tj-actions/auto-doc/pull/398) ([jackton1](https://github.com/jackton1))

## [v1.7.1](https://github.com/tj-actions/auto-doc/tree/v1.7.1) (2022-12-30)

[Full Changelog](https://github.com/tj-actions/auto-doc/compare/v1.7.0...v1)
[Full Changelog](https://github.com/tj-actions/auto-doc/compare/v1.7.0...v1.7.1)

**Merged pull requests:**

5 changes: 5 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -36,6 +36,11 @@ runs:
BIN_PATH="${{ inputs.bin_path }}"
INPUT_COLUMNS=(${{ inputs.input_columns }})
OUTPUT_COLUMNS=(${{ inputs.output_columns }})
if [[ ! -f "${{ inputs.action }}" ]]; then
echo "::warning::No action file found at: ${{ inputs.action }}"
exit 0
fi
for input_column in ${INPUT_COLUMNS[@]}; do
EXTRA_ARGS="${EXTRA_ARGS} --inputColumns ${input_column}"