Skip to content

Commit

Permalink
added workflow for stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
cophilot committed Jan 25, 2024
1 parent c18bddd commit 1475526
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/new_stable.yml
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 1475526

Please sign in to comment.