https://github.com/abap2xlsx/abap2xlsx-rename-action
Mirror and rename abap2xlsx
https://github.com/abap2xlsx/abap2xlsx-rename-action
Last synced: 2 months ago
JSON representation
Mirror and rename abap2xlsx
- Host: GitHub
- URL: https://github.com/abap2xlsx/abap2xlsx-rename-action
- Owner: abap2xlsx
- License: mit
- Created: 2023-12-07T09:27:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-07T13:43:21.000Z (over 1 year ago)
- Last Synced: 2025-01-07T21:53:12.843Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.58 MB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# abap2xlsx-mirror-action
Mirror and rename abap2xlsxReuseable [GitHub Action](https://github.com/features/actions) for mirroring and renaming the abap2xlsx source to local repository
## Demo
see [abap2xlsx/abap2xlsx-mirror-action-demo](https://github.com/abap2xlsx/abap2xlsx-mirror-action-demo)
## Parameters
```yml
patterns:
description: 'Patterns'
required: true
default: '[{"type": "CLAS|INTF", "oldName": "z(.*)_excel", "newName": "y$1_ecb"},{"type": "DTEL|DOMA|TABL|TTYP", "oldName": "zexcel_", "newName": "yecb_"},{"type": "MSAG", "oldName": "zabap2xlsx", "newName": "yecb"}]'
folder:
description: 'Folder'
required: true
default: 'src/abap2xlsx'
```## Usage
```yml
name: abap2xlsx-mirroron:
workflow_dispatch:permissions:
contents: write # for peter-evans/create-pull-request to create branch
pull-requests: write # for peter-evans/create-pull-request to create a PRjobs:
mirror-mirror:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: abap2xlsx/abap2xlsx-rename-action@main
- run: git status
- name: Open PR
uses: peter-evans/create-pull-request@v5
with:
title: "ABAP: abap2xlsx, automatic update"
branch: automatic/abap2xlsx-update
body: |
Automatic update of abap2xlsx
```