Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: use_local_config needs checkout #108

Merged
merged 1 commit into from
Nov 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,12 @@ jobs:

runs-on: ubuntu-latest


steps:

- name: Checkout your code
uses: actions/checkout@v3

- uses: srvaroa/labeler@master
with:
config_path: .github/labeler.yml
Expand All @@ -133,7 +138,8 @@ file for the action. The default is `.github/labeler.yaml`.
Use `use_local_config` to chose where to read the config file from. By
default, the action will read the file from the default branch of your
repository. If you set `use_local_config` to `true`, then the action
will read the config file from the local checkout.
will read the config file from the local checkout. Note that you may
need to checkout your branch before the action runs!

## Troubleshooting

Expand Down
Loading