You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## π Description
<!-- Add a more detailed description of the changes if needed. -->
## π Related issue
<!-- If your PR refers to a related issue, link it here. -->
Fixes: #
## ποΈ Type of change
<!-- Mark with an `x` all the checkboxes that apply (like `[x]`) -->
- [ ] π Examples / docs / tutorials
- [ ] π Bug fix (non-breaking change which fixes an issue)
- [ ] π₯ Improvement (non-breaking change which improves an existing
feature)
- [ ] π New feature (non-breaking change which adds functionality)
- [ ] π₯ Breaking change (fix or feature that would cause existing
functionality to change)
- [ ] π¨ Security fix
- [ ] β¬οΈ Dependencies update
## β Checklist
<!-- Mark with an `x` all the checkboxes that apply (like `[x]`) -->
- [ ] I've read the [`Code of
Conduct`](https://github.com/raven-actions/get-repos/blob/main/.github/CODE_OF_CONDUCT.md)>
document.
- [ ] I've read the
[`Contributing`](https://github.com/raven-actions/get-repos/blob/main/.github/CONTRIBUTING.md)
guide.
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ You can also use this action to get a **flat** output with your delimiter for di
29
29
30
30
### Quick Start
31
31
32
-
Example GitHub Workflow, to get all repositories that contain **ALL** listed topics (`AND` operator is by default). Follow [π₯ Inputs](#-inputs) to adjust behavior to `OR`. Then the result will be: get all repos with **ANY** listed topics.
32
+
Example GitHub Workflow, to get all repositories that contain **ANY**of listed topics (`OR` operator is by default). Follow [π₯ Inputs](#-inputs) to adjust behavior to `AND`. Then the result will be: get all repos with **ALL** listed topics.
33
33
34
34
```yaml
35
35
name: Sync Repositories
@@ -50,7 +50,6 @@ jobs:
50
50
uses: raven-actions/get-repos@v1
51
51
with:
52
52
topics: "sync,docs,managed"
53
-
operator: OR # logic operator for topics match, OR returns repos that have any of provided topics
54
53
55
54
sync-repos:
56
55
name: Sync (${{ matrix.repo.name }})
@@ -79,7 +78,7 @@ jobs:
79
78
uses: raven-actions/get-repos@v1
80
79
with:
81
80
topics: "raven-actions,composite-action"
82
-
operator: AND # logic operator for topics match, AND returns repos that have all of provided topics, AND is default
81
+
operator: AND # logic operator for topics match, AND returns repos that have all of provided topics, OR is default
0 commit comments