Compare commits

...

4 Commits
v8.3 ... v8.4

Author SHA1 Message Date
Tonye Jack
7bfa539f0d Update README.md 2021-06-26 12:12:28 -04:00
Renovate Bot
4db62cd596 Update reviewdog/action-shellcheck action to v1.6 2021-06-26 10:36:46 -04:00
Tonye Jack
654e9a041e Add message grouping (#117) 2021-06-26 10:20:56 -04:00
Tonye Jack
9af8ec1a72 Upgraded to v8.3 (#116)
Co-authored-by: jackton1 <jackton1@users.noreply.github.com>
2021-06-25 15:23:19 -04:00
4 changed files with 21 additions and 6 deletions

View File

@@ -18,7 +18,7 @@ jobs:
- name: Checkout to branch
uses: actions/checkout@v2
- name: shellcheck
uses: reviewdog/action-shellcheck@v1.5
uses: reviewdog/action-shellcheck@v1.6
test-no-head-sha:
name: Test changed-files missing head sha

View File

@@ -1,5 +1,14 @@
# Changelog
## [v8.3](https://github.com/tj-actions/changed-files/tree/v8.3) (2021-06-25)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.2...v8.3)
**Merged pull requests:**
- Fixed empty branch name in debug message [\#115](https://github.com/tj-actions/changed-files/pull/115) ([jackton1](https://github.com/jackton1))
- Upgraded to v8.2 [\#114](https://github.com/tj-actions/changed-files/pull/114) ([jackton1](https://github.com/jackton1))
## [v8.2](https://github.com/tj-actions/changed-files/tree/v8.2) (2021-06-24)
[Full Changelog](https://github.com/tj-actions/changed-files/compare/v8.1...v8.2)

View File

@@ -55,7 +55,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v8.2
uses: tj-actions/changed-files@v8.3
- name: List all modified files
run: |
@@ -108,11 +108,11 @@ jobs:
- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v8.2
uses: tj-actions/changed-files@v8.3
- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v8.2
uses: tj-actions/changed-files@v8.3
with:
separator: ","
@@ -134,7 +134,7 @@ jobs:
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v8.2
uses: tj-actions/changed-files@v8.3
with:
files: |
my-file.txt
@@ -163,7 +163,7 @@ jobs:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v8.2
uses: tj-actions/changed-files@v8.3
- name: Pre-commit
uses: pre-commit/action@v2.0.0
@@ -184,6 +184,8 @@ jobs:
If you feel generous and want to show some extra appreciation:
Support me with a :star:
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee]
[buymeacoffee]: https://www.buymeacoffee.com/jackton1

View File

@@ -2,6 +2,8 @@
set -e
echo "::group::changed-files"
git remote set-url origin "https://${INPUT_TOKEN}@github.com/${GITHUB_REPOSITORY}"
echo "Getting HEAD info..."
@@ -146,3 +148,5 @@ echo "::set-output name=unmerged_files::$UNMERGED"
echo "::set-output name=unknown_files::$UNKNOWN"
echo "::set-output name=all_changed_files::$ALL_CHANGED"
echo "::set-output name=all_modified_files::$ALL_MODIFIED_FILES"
echo "::endgroup::"