Skip to content

feat(contentReplacerReprocessor): add regex replace rules #63

feat(contentReplacerReprocessor): add regex replace rules

feat(contentReplacerReprocessor): add regex replace rules #63

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