feat(contentReplacerReprocessor): add regex replace rules #63
Workflow file for this run
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
on: [pull_request] | |
jobs: | |
UpdateMeta: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
sparse-checkout: | | |
.github | |
src | |
bin | |
verified | |
candidates | |
- 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] Am adăugat eventualele meta informații despre conținutul cântecelor.' && git push | |
env: | |
CI: true | |
FORCE_COLOR: 2 |