-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Imported resurse crestine songs based on rc_authors_to_process.txt an…
…d rc_ids_to_process.txt.
- Loading branch information
Showing
5 changed files
with
75 additions
and
19 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,35 @@ | ||
name: 'CI (Continuous Integration) & Auto Update Songs Meta' | ||
|
||
on: [pull_request] | ||
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 | ||
|
@@ -25,6 +45,38 @@ jobs: | |
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 | ||
|
@@ -52,6 +104,7 @@ jobs: | |
> | ||
> | ||
skip-checks: true" | ||
git push | ||
env: | ||
CI: true | ||
FORCE_COLOR: 2 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
export * from './types.js'; | ||
export * as contentReplacerReprocessor from './contentReplacerReprocessor.js'; | ||
export * as contentStructureReprocessor from './contentStructureReprocessor.js'; | ||
export * as lyricsFileNameReprocessor from './lyricsFileNameReprocessor.js'; | ||
export * from './charsStatsCollector.js'; | ||
export * from './constants.js'; | ||
export * from './contentStructureValidator.js'; | ||
export * from './core.js'; | ||
export * from './constants.js'; | ||
export * as lyricsFileNameReprocessor from './lyricsFileNameReprocessor.js'; | ||
export * as contentStructureReprocessor from './contentStructureReprocessor.js'; | ||
export * as contentReplacerReprocessor from './contentReplacerReprocessor.js'; | ||
export * from './songParser.js'; | ||
export * from './songPrinter.js'; | ||
export * from './types.js'; |
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
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