-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
17 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
name: Check own GitHub action | ||
on: | ||
workflow_run: | ||
workflows: ["Publish"] | ||
types: | ||
- completed | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
check_action: | ||
|
@@ -19,7 +17,7 @@ jobs: | |
- run: cargo install --path . | ||
- id: expected | ||
run: echo "::set-output name=files::$(ff '*.rs' '*.toml' | sort | paste -sd ' ')" | ||
- uses: jeertmans/[email protected].3 | ||
- uses: jeertmans/[email protected].4 | ||
id: ff | ||
with: | ||
args: "*.rs *.toml" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "filesfinder" | ||
version = "0.3.3" | ||
version = "0.3.4" | ||
authors = ["Jérome Eertmans <[email protected]>"] | ||
edition = "2021" | ||
description = "Find files within current directory that match given patterns, while respecting gitignore rules." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,7 @@ A major application to `FF` is to be used within repositories. Therefore, you ca | |
# Default: ${{ github.repository }} | ||
repository: '' | ||
- name: Find files matching "*.rs" or "*.md" | ||
uses: jeertmans/[email protected].3 | ||
uses: jeertmans/[email protected].4 | ||
id: ff # Any id, to be used later to reference to files output | ||
with: | ||
# Only argument, a single string, to be passed as arguments to ff. | ||
|