Skip to content

Commit

Permalink
[skip ci] Automatically create PRs from develop to release.
Browse files Browse the repository at this point in the history
  • Loading branch information
whitequark committed Aug 23, 2020
1 parent 23d77cf commit 3ce5cc9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,17 @@
on:
schedule:
- cron: '0 0 * * 0'
name: Auto-release
jobs:
autorelease:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
- name: Create pull request
uses: repo-sync/pull-request@v2
with:
pr_title: 'Release current development snapshot to PyPI'
source_branch: develop
destination_branch: release
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3ce5cc9

Please sign in to comment.