Skip to content

Commit

Permalink
build: integrate with release notifications (#115)
Browse files Browse the repository at this point in the history
Add support for release process notifications.
  • Loading branch information
parfeon authored Nov 9, 2021
1 parent c32c212 commit 9f66c2d
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/commands-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ jobs:
with:
token: ${{ secrets.GH_TOKEN }}
listener: client-engineering-bot
jira-api-key: ${{ secrets.JIRA_API_KEY }}
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Automated product release

on:
pull_request:
branches: [ master ]
types: [ closed ]


jobs:
check-release:
name: Check release required
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.merged && endsWith(github.repository, '-private') != true }}
outputs:
release: ${{ steps.check.outputs.ready }}
steps:
- name: Checkout actions
uses: actions/checkout@v2
with:
repository: pubnub/client-engineering-deployment-tools
ref: v1
token: ${{ secrets.GH_TOKEN }}
path: .github/.release/actions
- id: check
name: Check pre-release completed
uses: ./.github/.release/actions/actions/checks/release
with:
token: ${{ secrets.GH_TOKEN }}
publish:
name: Publish package
runs-on: macos-11
needs: check-release
if: ${{ needs.check-release.outputs.release == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# This should be the same as the one specified for on.pull_request.branches
ref: master
- name: Checkout actions
uses: actions/checkout@v2
with:
repository: pubnub/client-engineering-deployment-tools
ref: v1
token: ${{ secrets.GH_TOKEN }}
path: .github/.release/actions
- name: Create Release
uses: ./.github/.release/actions/actions/services/github-release
with:
token: ${{ secrets.GH_TOKEN }}
jira-api-key: ${{ secrets.JIRA_API_KEY }}
last-service: true

0 comments on commit 9f66c2d

Please sign in to comment.