Skip to content

Commit

Permalink
Merge pull request #2 from cloudquery/release-pr
Browse files Browse the repository at this point in the history
chore: Add release PRs
  • Loading branch information
hermanschaaf committed Sep 14, 2023
2 parents 063c41a + 871ecbe commit d31c672
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: release-please
on:
push:
branches:
- main
workflow_dispatch:

jobs:
release-please:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: go
package-name: plugin-sdk
token: ${{ secrets.GH_CQ_BOT }}
pull-request-title-pattern: "chore${scope}: Release${component} v${version}"
- name: Parse semver string
if: steps.release.outputs.release_created
id: semver_parser
uses: booxmedialtd/ws-action-parse-semver@7784200024d6b3fc01253e617ec0168daf603de3
with:
input_string: ${{ steps.release.outputs.tag_name }}
- name: Mark as pre-release
if: steps.semver_parser.outputs.prerelease != ''
uses: tubone24/update_release@1cfa79ccf7422570d9a9c6b6de749ff4b280e48b
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG_NAME: ${{ steps.release.outputs.tag_name }}
with:
prerelease: true
- name: Trigger Renovate
uses: actions/github-script@v6
if: steps.release.outputs.release_created && steps.semver_parser.outputs.prerelease == ''
with:
github-token: ${{ secrets.GH_CQ_BOT }}
script: |
github.rest.actions.createWorkflowDispatch({
owner: 'cloudquery',
repo: '.github',
workflow_id: 'renovate.yml',
ref: 'main',
})

0 comments on commit d31c672

Please sign in to comment.