This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
fix: github app uses the repository name #3254
Workflow file for this run
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
--- | |
name: licenses | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# limit the access of the generated GITHUB_TOKEN | |
permissions: | |
contents: read | |
jobs: | |
licenses: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
- name: License | |
run: | | |
go install github.com/elastic/go-licenser@latest | |
ls -ltra "$(go env GOPATH)"/bin | |
"$(go env GOPATH)"/bin/go-licenser -d -ext .groovy |