mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 09:07:45 +01:00
34 lines
1,007 B
YAML
34 lines
1,007 B
YAML
name: update oss attributions
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'package.json'
|
|
- 'package-lock.json'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-oss:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18'
|
|
- name: Install and generate attribution
|
|
run: |
|
|
npm ci
|
|
npm i -g oss-attribution-generator
|
|
generate-attribution
|
|
mv ./oss-attribution/attribution.txt ./public/oss-attribution/attribution.txt
|
|
|
|
- name: Create pull request to update list
|
|
uses: peter-evans/create-pull-request@b4d51739f96fca8047ad065eccef63442d8e99f7
|
|
# v4.2.0
|
|
with:
|
|
commit-message: Update OSS Attribution
|
|
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
branch: ci/oss_attribution
|
|
title: Update OSS Attribution
|
|
body: Automated OSS Attribution update
|