Skip to content

Commit

Permalink
test 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DarylTodosichuk committed Oct 24, 2024
1 parent 721cbbe commit c2a270d
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/hotfix-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Hotfix - Create PR into main from selected branch or tag

on:
workflow_dispatch:
inputs:
environment:
description: 'Environment'
default: 'main'
required: true
type: string
pr_title:
description: 'Title for the pull request'
required: true
type: string
pr_body:
description: 'Body for the pull request'
required: false
type: string

jobs:
create-pr:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Create pull request
id: create_pr
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
source: ${{ github.ref }}
destination: main
title: ${{ github.event.inputs.pr_title }}
body: ${{ github.event.inputs.pr_body }}
branch: hotfix-pr-${{ github.ref }}
3 changes: 2 additions & 1 deletion applications/scripts/datafix-ab#005.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
test 1
test 2
test 3
test 3
test 4

0 comments on commit c2a270d

Please sign in to comment.