-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch deployment to GitHub Actions (#112)
build: switch deployment to GitHub Actions Switch product deployment to GitHub Actions.
- Loading branch information
Showing
4 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
* @kleewho @crimsonred @raipubnub | ||
.travis/* @parfeon @kleewho @crimsonred @raipubnub | ||
README.md @techwritermat | ||
.github/* @parfeon @kleewho @crimsonred @raipubnub | ||
README.md @techwritermat @kazydek | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Commands processor | ||
|
||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
process: | ||
name: Process command | ||
if: ${{ github.event.issue.pull_request && endsWith(github.repository, '-private') != true && startsWith(github.event.comment.body, '@client-engineering-bot ') }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Checkout release actions | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: pubnub/client-engineering-deployment-tools | ||
ref: v1 | ||
token: ${{ secrets.GH_TOKEN }} | ||
path: .github/.release/actions | ||
- name: Process changelog entries | ||
uses: ./.github/.release/actions/actions/commands | ||
with: | ||
token: ${{ secrets.GH_TOKEN }} | ||
listener: client-engineering-bot |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
".pubnub.yml": [ | ||
{ "pattern": "^version: (.+)$", "cleared": false }, | ||
{ "pattern": "\/releases\/tag\/(v?(\\d+\\.?){2,}([a-zA-Z-]+(\\.?\\d+)?)?)", "cleared": false } | ||
], | ||
"pubnub.go": [ | ||
{ "pattern": "Version = \"(.*)\"", "cleared": true } | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,7 @@ coverage.txt | |
*.out | ||
|
||
vendor/golang.org/ | ||
|
||
# GitHub Actions # | ||
################## | ||
.github/.release |