Skip to content

Releases: ws2git/pr-spark

Automated Pull Request Creation

24 Aug 16:06
b88fc88

Choose a tag to compare

v1 Release: Automated Pull Request Creation

21 Aug 18:00
a6a08d6

Choose a tag to compare

The first stable release of PR Spark, a GitHub Action designed to simplify your automated workflows. This action allows you to automatically create Pull Requests from one branch to another using a simple and efficient method.

This is our initial stable release, tagged as v1.

Key Features

  • Effortless PR Creation: Create Pull Requests with a single step in your workflow.
  • API-Based: Uses the official GitHub API to ensure robust and reliable operation.
  • Fully Customizable: Set the PR title, body, source branch, and destination branch dynamically.
  • Standard Token Support: Works seamlessly with the default secrets.GITHUB_TOKEN.

Getting Started

To add this action to your project, simply use the v1 tag in your workflow file.

- name: Create Pull Request
  uses: ws2git/pr-spark@v1
  with:
    github-token: ${{ secrets.GITHUB_TOKEN }}
    title: 'Auto Pull Request'
    body: 'Automated PR for deployment.'
    source-branch: 'develop'
    dest-branch: 'main'

We welcome your feedback and contributions to help us improve this action.