Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test 5.4 #86

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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