diff options
author | Brian <mofosyne@gmail.com> | 2024-05-19 20:51:03 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-19 20:51:03 +1000 |
commit | e23b974f4cf9270d05062d446f406e3ff55d9451 (patch) | |
tree | 8c1b4076987dbb3e4ce93cb3835a04e26ad925b4 | |
parent | 854d365abab7194b5013a523f72da19860c3c550 (diff) |
labeler.yml: Use settings from ggerganov/llama.cpp [no ci] (#7363)
https://github.com/actions/labeler#using-configuration-path-input-together-with-the-actionscheckout-action
Recommends the use of checkout action to use the correct repo context
when applying settings for PR labels
e.g.
steps:
- uses: actions/checkout@v4 # Uploads repository content to the runner
with:
repository: "owner/repositoryName" # The one of the available inputs, visit https://github.com/actions/checkout#readme to find more
- uses: actions/labeler@v5
with:
configuration-path: 'path/to/the/uploaded/configuration/file'
-rw-r--r-- | .github/workflows/labeler.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index e57cd86e..368dbdbe 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -9,4 +9,9 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + with: + repository: "ggerganov/llama.cpp" - uses: actions/labeler@v5 + with: + configuration-path: '.github/labeler.yml' |