From 42075590058b21f38b5e745af54b2062371f9ebe Mon Sep 17 00:00:00 2001 From: PhilWindle <60546371+PhilWindle@users.noreply.github.com> Date: Wed, 23 Aug 2023 14:33:14 +0100 Subject: [PATCH] feat(ci): Initial release please config (#1769) PR with initial release please configuration # Checklist: Remove the checklist to signal you've completed it. Enable auto-merge if the PR is ready to merge. - [ ] If the pull request requires a cryptography review (e.g. cryptographic algorithm implementations) I have added the 'crypto' tag. - [ ] I have reviewed my diff in github, line by line and removed unexpected formatting changes, testing logs, or commented-out code. - [ ] Every change is related to the PR description. - [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this pull request to relevant issues (if any exist). --- .github/workflows/release_please.yml | 22 ++++++++++++++++++++++ CHANGELOG.md | 0 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/release_please.yml create mode 100644 CHANGELOG.md diff --git a/.github/workflows/release_please.yml b/.github/workflows/release_please.yml new file mode 100644 index 00000000000..ae43431ae9d --- /dev/null +++ b/.github/workflows/release_please.yml @@ -0,0 +1,22 @@ +on: + push: + branches: + - master + +permissions: + contents: write + pull-requests: write + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v3 + with: + release-type: simple + package-name: release-please-action + prerelease: true + default-branch: master + changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false},{"type":"test","section":"Miscellaneous","hidden":false},{"type":"refactor","section":"Miscellaneous","hidden":false},{"type":"perf","section":"Miscellaneous","hidden":false},{"type":"docs","section":"Documentation","hidden":false},{"type":"ci","section":"Build","hidden":false},{"type":"build","section":"Build","hidden":false}]' diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000000..e69de29bb2d