diff --git a/.github/workflows/new_stable.yml b/.github/workflows/new_stable.yml new file mode 100644 index 0000000..4d95bc0 --- /dev/null +++ b/.github/workflows/new_stable.yml @@ -0,0 +1,21 @@ +name: Create New Stable Version + +on: + workflow_dispatch: + +jobs: + create_pull_request: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + branch: main + base: stable + title: Automated Pull Request + body: This pull request was automatically created by a workflow.