Add dynamic Event Title field to Event Definitions #16855
This file contains hidden or 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: PR Review | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.[jt]sx?' | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| jobs: | |
| linter: | |
| name: Reviewbot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| cache: maven | |
| - name: Compile with Maven / Install dependencies | |
| run: ./mvnw --fail-fast -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3 -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 compile | |
| - name: Reviewbot | |
| uses: Graylog2/reviewbot@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| prefix: graylog2-web-interface |