Skip to content

Add auto-import from RC through config file #1117

Add auto-import from RC through config file

Add auto-import from RC through config file #1117

Workflow file for this run

name: 'CI (Continuous Integration) & Auto Update Songs Meta'
on: [ pull_request ]
jobs:
PathsFilter:
runs-on: ubuntu-latest
outputs:
rcOutput: ${{ steps.filter.outputs.rcImportsHaveChanged }}
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- uses: dorny/paths-filter@v2
id: filter
with:
path: bes-lyrics
filters: |
rcImportsHaveChanged:
- 'temp_runners/**/*.txt'
Build:
needs: PathsFilter
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
path: bes-lyrics
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm i
- name: Build
run: npm run build:ci
env:
CI: true
FORCE_COLOR: 2
AutoImportFromRC:
needs: [ Build, PathsFilter ]
runs-on: ubuntu-latest
if: needs.PathsFilter.outputs.rcOutput == 'true'
steps:
- name: Checkout bes-lyrics-parser repo
uses: actions/checkout@v3
with:
token: ${{ secrets.PAT_BES_PROJECTS }}
repository: ioanlucut/bes-lyrics-parser
path: bes-lyrics-parser
sparse-checkout: |
out
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Import from RC (if not exists already)
working-directory: ./bes-lyrics
run: |
npm i && npm run import:rc:ci
git config user.name github-actions
git config user.email [email protected]
git add -A
git diff --quiet && git diff --staged --quiet || git commit -am "[Bot] I have imported the resurse crestine songs based on the rc_authors_to_process.txt and rc_ids_to_process.txt."
git push
env:
CI: true
FORCE_COLOR: 2
AutoUpdateMeta:
needs: Build
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: npm i
- name: Update meta (hashes, renames, etc.)
run: |
npm run meta:ci
git config user.name github-actions
git config user.email [email protected]
git add -A
git diff --quiet && git diff --staged --quiet || git commit -am "[Bot] I have added all of the meta information about the content to it.
>
>
skip-checks: true"
git push
env:
CI: true
FORCE_COLOR: 2