mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 21:37:26 +08:00
![github-actions[bot]](/assets/img/avatar_default.png)
* [create-pull-request] automated change * Update zcl_abapgit_ajson.clas.locals_imp.abap * Update zcl_abapgit_ajson.clas.locals_imp.abap * Update ajson_mirror.yaml * skip parse_bare_values Co-authored-by: larshp <larshp@users.noreply.github.com> Co-authored-by: Lars Hvam <larshp@hotmail.com>
37 lines
794 B
YAML
37 lines
794 B
YAML
name: ajson mirror
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 1'
|
|
|
|
jobs:
|
|
run:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
- name: run
|
|
run: |
|
|
git clone https://github.com/abapGit/ajson_mirror.git
|
|
ls -l
|
|
rm src/json/*
|
|
cp ajson_mirror/src/* src/json/
|
|
rm -rf ajson_mirror
|
|
git status
|
|
- name: Open PR
|
|
uses: peter-evans/create-pull-request@v3
|
|
if: github.repository == 'abapGit/abapGit'
|
|
with:
|
|
title: ajson, Automatic Update
|
|
body: |
|
|
Automatic update from mirror
|
|
https://github.com/abapGit/ajson_mirror
|
|
|
|
Make manual change to trigger CI
|