feat:ovos.common_play.search.populate event #7
Workflow file for this run
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 Alpha and Propose Stable | |
on: | |
pull_request: | |
types: [closed] | |
branches: [dev] | |
jobs: | |
publish_alpha: | |
if: github.event.pull_request.merged == true | |
uses: TigreGotico/gh-automations/.github/workflows/publish-alpha.yml@master | |
secrets: inherit | |
with: | |
branch: 'dev' | |
version_file: 'ovos_plugin_common_play/version.py' | |
setup_py: 'setup.py' | |
update_changelog: true | |
publish_prerelease: true | |
changelog_max_issues: 100 | |
notify: | |
if: github.event.pull_request.merged == true | |
needs: publish_alpha | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Send message to Matrix bots channel | |
id: matrix-chat-message | |
uses: fadenb/[email protected] | |
with: | |
homeserver: 'matrix.org' | |
token: ${{ secrets.MATRIX_TOKEN }} | |
channel: '!WjxEKjjINpyBRPFgxl:krbel.duckdns.org' | |
message: | | |
new ${{ github.event.repository.name }} PR merged! https://github.com/${{ github.repository }}/pull/${{ github.event.number }} | |
publish_pypi: | |
needs: publish_alpha | |
if: success() # Ensure this job only runs if the previous job succeeds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: dev | |
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install Build Tools | |
run: | | |
python -m pip install build wheel | |
- name: version | |
run: echo "::set-output name=version::$(python setup.py --version)" | |
id: version | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
tag_name: V${{ steps.version.outputs.version }} | |
release_name: Release ${{ steps.version.outputs.version }} | |
body: | | |
Changes in this Release | |
${{ steps.changelog.outputs.changelog }} | |
draft: false | |
prerelease: true | |
commitish: dev | |
- name: Build Distribution Packages | |
run: | | |
python setup.py sdist bdist_wheel | |
- name: Publish to Test PyPI | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{secrets.PYPI_TOKEN}} | |
propose_release: | |
needs: publish_alpha | |
if: success() # Ensure this job only runs if the previous job succeeds | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout dev branch | |
uses: actions/checkout@v3 | |
with: | |
ref: dev | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Get version from setup.py | |
id: get_version | |
run: | | |
VERSION=$(python setup.py --version) | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- name: Create and push new branch | |
run: | | |
git checkout -b release-${{ env.VERSION }} | |
git push origin release-${{ env.VERSION }} | |
- name: Open Pull Request from dev to master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
# Variables | |
BRANCH_NAME="release-${{ env.VERSION }}" | |
BASE_BRANCH="master" | |
HEAD_BRANCH="release-${{ env.VERSION }}" | |
PR_TITLE="Release ${{ env.VERSION }}" | |
PR_BODY="Human review requested!" | |
# Create a PR using GitHub API | |
curl -X POST \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: token $GITHUB_TOKEN" \ | |
-d "{\"title\":\"$PR_TITLE\",\"body\":\"$PR_BODY\",\"head\":\"$HEAD_BRANCH\",\"base\":\"$BASE_BRANCH\"}" \ | |
https://api.github.com/repos/${{ github.repository }}/pulls | |