mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-22 02:34:05 +08:00
`github.ref_name` is > The short ref name of the branch or tag that triggered the workflow run. This value matches the branch or tag name shown on GitHub. For example, feature-branch-1. > > For pull requests, the format is <pr_number>/merge. Not sure why we use `github.run_number` when it is a unique number for each run of a workflow. `github.head_ref` is only present on pull request events so it is blank when the workflow is ran on other branches. By updating the key to `github.ref_name` + `github.job` we ensure that only one workflow will be running for a given PR or branch.
65 lines
1.5 KiB
YAML
Vendored
65 lines
1.5 KiB
YAML
Vendored
name: Licenses
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
concurrency:
|
|
group: licenses-${{ format('{0}-{1}', github.ref_name, github.job) }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
if: github.event_name == 'pull_request' || github.repository != 'discourse/discourse-private-mirror'
|
|
name: run
|
|
runs-on: ubuntu-latest
|
|
container: discourse/discourse_test:slim
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Setup Git
|
|
run: |
|
|
git config --global user.email "ci@ci.invalid"
|
|
git config --global user.name "Discourse CI"
|
|
|
|
- name: Bundler cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: ${{ runner.os }}-gem-
|
|
|
|
- name: Setup gems
|
|
run: |
|
|
bundle config --local path vendor/bundle
|
|
bundle config --local deployment true
|
|
bundle config --local without development
|
|
bundle install --jobs 4
|
|
bundle clean
|
|
|
|
- name: Setup licensed
|
|
run: |
|
|
gem install licensed
|
|
|
|
- name: Check RubyGems Licenses
|
|
if: ${{ !cancelled() }}
|
|
run: |
|
|
licensed cache
|
|
licensed status
|
|
|
|
- name: pnpm install
|
|
run: pnpm install
|
|
|
|
- name: Check JS Licenses
|
|
if: ${{ !cancelled() }}
|
|
run: |
|
|
pnpm licensee --errors-only
|