forked from pinpoint-apm/pinpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pinpoint-apm#8243] When a release event occurs in the Pinpoint githu…
…b repository, https://github.com/pinpoint-apm/pinpoint-apm.github.io sends the repository dispatch event, and the payload includes release author information, release title, and body. An action that receives a repository dispatch event from https://github.com/pinpoint-apm/pinpoint-apm.github.io updates the release notes and compatibility tables on the Pinpoint website.
- Loading branch information
Showing
6 changed files
with
125 additions
and
129 deletions.
There are no files selected for viewing
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,21 +1,17 @@ | ||
# This workflow will build a Java project with Maven | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Homepage | ||
|
||
on: | ||
push: | ||
branches: [ feature/repository_dispatch ] | ||
jobs: | ||
on: | ||
release: | ||
types: [published] | ||
|
||
build: | ||
jobs: | ||
repository-dispatch-event: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v1 | ||
with: | ||
token: ${{ secrets.REPO_ACCESS_TOKEN }} | ||
repository: pinpoint-apm/pinpoint | ||
event-type: my-event | ||
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v1 | ||
with: | ||
token: ${{ secrets.REPO_ACCESS_TOKEN }} | ||
repository: pinpoint-apm/pinpoint-apm.github.io | ||
event-type: release-pinpoint | ||
client-payload: '{"username": "${{ github.actor }}", "release": ${{ toJSON(github.event.release) }}}' |
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
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,7 +1,7 @@ | ||
Pinpoint Version | HBase 0.98.x | HBase 1.0.x | HBase 1.2.x | HBase 2.0.x | ||
---------------- | ------------ | ----------- | ----------- | ----------- | ||
1.5.x | not tested | yes | not tested | no | ||
1.6.x | not tested | not tested | yes | no | ||
1.7.x | not tested | not tested | yes | no | ||
1.8.x | not tested | not tested | yes | no | ||
2.0.x | not tested | not tested | yes | optional | ||
| Pinpoint Version | HBase 0.98.x | HBase 1.0.x | HBase 1.2.x | HBase 2.0.x | | ||
| :--- | :--- | :--- | :--- | :--- | | ||
| 1.5.x | not tested | yes | not tested | no | | ||
| 1.6.x | not tested | not tested | yes | no | | ||
| 1.7.x | not tested | not tested | yes | no | | ||
| 1.8.x | not tested | not tested | yes | no | | ||
| 2.0.x | not tested | not tested | yes | optional | |
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,8 +1,8 @@ | ||
Pinpoint Version | Agent | Collector | Web | ||
---------------- | ----- | --------- | --- | ||
1.5.x | 6-8 | 7-8 | 7-8 | ||
1.6.x | 6-8 | 7-8 | 7-8 | ||
1.7.x | 6-8 | 8 | 8 | ||
1.8.0 | 6-10 | 8 | 8 | ||
1.8.1+ | 6-11 | 8 | 8 | ||
2.0.x | 6-11 | 8 | 8 | ||
| Pinpoint Version | Agent | Collector | Web | | ||
| :--- | :--- | :--- | :--- | | ||
| 1.5.x | 6-8 | 7-8 | 7-8 | | ||
| 1.6.x | 6-8 | 7-8 | 7-8 | | ||
| 1.7.x | 6-8 | 8 | 8 | | ||
| 1.8.0 | 6-10 | 8 | 8 | | ||
| 1.8.1+ | 6-11 | 8 | 8 | | ||
| 2.0.x | 6-11 | 8 | 8 | |
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,7 +1,7 @@ | ||
Agent Version | Collector 1.5.x | Collector 1.6.x | Collector 1.7.x | Collector 1.8.x | Collector 2.0.x | ||
------------- | --------------- | --------------- | --------------- | --------------- | --------------- | ||
1.5.x | yes | yes | yes | yes | yes | ||
1.6.x | not tested | yes | yes | yes | yes | ||
1.7.x | no | no | yes | yes | yes | ||
1.8.x | no | no | no | yes | yes | ||
2.0.x | no | no | no | no | yes | ||
| Agent Version | Collector 1.5.x | Collector 1.6.x | Collector 1.7.x | Collector 1.8.x | Collector 2.0.x | | ||
| :--- | :--- | :--- | :--- | :--- | :--- | | ||
| 1.5.x | yes | yes | yes | yes | yes | | ||
| 1.6.x | not tested | yes | yes | yes | yes | | ||
| 1.7.x | no | no | yes | yes | yes | | ||
| 1.8.x | no | no | no | yes | yes | | ||
| 2.0.x | no | no | no | no | yes | |
Oops, something went wrong.