Skip to content

Commit

Permalink
Create build_downport_branch.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
oblomov-dev authored Feb 2, 2025
1 parent 966d7b9 commit eab7ec5
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build_downport_branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: build_downport_branch

on:
push:
branches: [standard]

permissions:
contents: read

jobs:
build_downport_branch:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
ref: 702
- uses: actions/setup-node@v4
with:
node-version: 20
- run: git clone https://github.com/abap2UI5/abap2UI5-setup.git && cp -r abap2UI5-setup/* . && npm i
- run: npm ci
- run: npm run downport_samples
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
branch: auto-update
title: "Automatic Update"
commit-message: "Automated changes"
body: "This PR contains automated changes."
labels: "auto-merge"
- name: Enable Pull Request Automerge
uses: peter-evans/enable-pull-request-automerge@v3
with:
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
merge-method: squash

0 comments on commit eab7ec5

Please sign in to comment.