mirror of
https://github.com/actions/github-script.git
synced 2025-12-08 08:06:23 +00:00
28 lines
638 B
YAML
28 lines
638 B
YAML
name: Licensed
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
name: Check licenses
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # prefer to use a full fetch for licensed workflows
|
|
- uses: ruby/setup-ruby@28c4deda893d5a96a6b2d958c5b47fc18d65c9d3 # v1.213.0
|
|
with:
|
|
ruby-version: ruby
|
|
- uses: github/setup-licensed@v1
|
|
with:
|
|
version: '4.x'
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: ./.github/actions/install-dependencies
|
|
- run: licensed status
|