diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 00000000..d5d04376 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,24 @@ +name: PR to main + +on: + push: + branches: + - dev + workflow_dispatch: + +env: + MESSAGE: merge branch \`${{ github.head_ref || github.ref_name }}\` to \`main\` + +jobs: + pull-request: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Open pull request + uses: repo-sync/pull-request@v2 + with: + destination_branch: 'main' + pr_title: 'chore: ${{ env.MESSAGE }}' + pr_body: 'This pull request will ${{ env.MESSAGE }}.' + pr_draft: true \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1355b13e..63eff0f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: - name: Build with Gradle run: ./gradlew build --no-daemon - name: Setup semantic-release - run: npm install semantic-release @semantic-release/git @semantic-release/changelog gradle-semantic-release-plugin -D + run: npm install semantic-release @saithodev/semantic-release-backmerge @semantic-release/git @semantic-release/changelog gradle-semantic-release-plugin -D - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.releaserc b/.releaserc index 6eedc1cf..cd4494b8 100644 --- a/.releaserc +++ b/.releaserc @@ -7,11 +7,7 @@ } ], "plugins": [ - ["@semantic-release/commit-analyzer", { - "releaseRules": [ - {"type": "build", "release": "patch"} - ] - }], + "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "gradle-semantic-release-plugin", @@ -33,6 +29,13 @@ } ] } + ], + [ + "@saithodev/semantic-release-backmerge", + { + branches: [{from: "main", to: "dev"}], + clearWorkspace: true + } ] ] }