Skip to content
Open
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
21 changes: 21 additions & 0 deletions .github/workflows/create_release_pr
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Pull Request for Release Branch

on:
push:
branches:
- release/*
workflow_dispatch:

jobs:
create_pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create Pull Request
run: |
gh pr create --fill --draft --base live
env:
GH_TOKEN: ${{ github.token }}
10 changes: 10 additions & 0 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Say Hello World!

on:
workflow_dispatch:
jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- name: Print Hello World
run: echo Hello World