Downport #6482
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: Downport | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 */6 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
- name: Run Commands | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "CI" | |
git clone https://github.com/abapGit/upport /tmp/new | |
rm -rf src | |
cp -rf /tmp/new/src src | |
git add -A | |
git commit -m "update base" | |
git push | |
npm install @abaplint/cli | |
npx abaplint --fix | |
git status | |
git add -A | |
git commit -m "downport" | |
git push |