revue Valygar #77
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
name: Merge Dialog Files | |
on: push | |
jobs: | |
MergeDialogFiles: | |
if: github.repository_owner == 'r-e-d' | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Initial setup | |
run: | | |
git lfs uninstall | |
git config --global core.autocrlf false | |
git config --global core.ignorecase true | |
- name: Clone repository using 'github.ref' from release | |
uses: actions/checkout@master | |
- name: Perform a diff between tra files and generate patching code | |
run: node dist/index.js | |
- name: Git add & commit | |
uses: EndBug/add-and-commit@v9 |