Release PR #314
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release PR | |
on: | |
push: | |
branches: | |
- develop | |
schedule: | |
- cron: "0 0 * * *" | |
concurrency: | |
cancel-in-progress: true | |
group: "release-pr" | |
jobs: | |
release-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2 # Not needed with a .ruby-version file | |
bundler-cache: true | |
- name: Install semantic-release | |
shell: bash | |
run: | | |
sudo npm install -g \ | |
semantic-release \ | |
@semantic-release/git \ | |
@semantic-release/release-notes-generator \ | |
@semantic-release/github \ | |
@semantic-release/exec | |
- name: Create Release PR | |
shell: bash | |
run: | | |
cat <<EOF > .releaserc.yaml | |
branches: ["${GITHUB_REF#refs/*/}"] | |
tagFormat: '\${version}' | |
dryRun: true | |
ci: true | |
debug: true | |
plugins: | |
- '@semantic-release/commit-analyzer' | |
- [ | |
'@semantic-release/exec', | |
{ | |
'verifyReleaseCmd': "echo \${nextRelease.version} > version.txt", | |
}, | |
] | |
EOF | |
npx semantic-release --debug | |
cat <<EOF > template.erb | |
Release $(cat version.txt) | |
<% pull_requests.each do |pr| -%> | |
<%= pr.to_checklist_item %> | |
<% end -%> | |
EOF | |
gem install --no-document git-pr-release | |
git-pr-release --no-fetch --squashed | |
env: | |
GIT_PR_RELEASE_BRANCH_PRODUCTION: main | |
GIT_PR_RELEASE_BRANCH_STAGING: ${{ github.event.repository.default_branch || 'develop'}} | |
GIT_PR_RELEASE_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GIT_PR_RELEASE_LABELS: release | |
GIT_PR_RELEASE_MENTION: author | |
GIT_PR_RELEASE_TEMPLATE: template.erb | |
DEBUG: "true" |