Skip to content

fix: test gh with PAT secret #5

fix: test gh with PAT secret

fix: test gh with PAT secret #5

Workflow file for this run

name: Create production promotion pull request
on:
push:
branches:
- 'hotfix/*' # Trigger for hotfix branches
workflow_dispatch:
jobs:
promote-hotfix:
runs-on: ubuntu-latest
steps:
- name: create pull request
run: gh pr create -B main -H ${{ github.ref_name }} --title 'Merge ${{ github.ref_name }} into main' --body 'Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.PAT }}