diff --git a/.github/workflows/create_release_pr b/.github/workflows/create_release_pr new file mode 100644 index 0000000..dd683b8 --- /dev/null +++ b/.github/workflows/create_release_pr @@ -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 }} \ No newline at end of file diff --git a/.github/workflows/hello-world.yml b/.github/workflows/hello-world.yml new file mode 100644 index 0000000..52a7562 --- /dev/null +++ b/.github/workflows/hello-world.yml @@ -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