Skip to content

Downport

Downport #5823

Workflow file for this run

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 "ci@abapgit.org"
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