-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Revert "Revert "Testing main flow" (#14)" This reverts commit e83645c. * Testing workflow summary - 1 * Testing workflow summary - 2 * Testing workflow summary - 3 * Testing workflow summary - 4 * Test more events * Add workflow_run * Add workflow_run another * Add second_workflow
- Loading branch information
1 parent
586ac2e
commit 5bdfafd
Showing
2 changed files
with
68 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: FirstWorkflow | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
schedule: | ||
- cron: '*/5 * * * *' # Runs every 5 minutes | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew |
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,46 @@ | ||
name: SecondWorkflow | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["FirstWorkflow"] | ||
types: | ||
- completed # This triggers only when the previous workflow completes successfully | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
|
||
- name: Run Module Coverage | ||
run: ./gradlew prodNormalDebugCoverage debugCoverage | ||
|
||
- name: Jacoco Report to PR | ||
id: jacoco | ||
uses: madrapps/jacoco-report@more-events | ||
with: | ||
paths: | | ||
${{ github.workspace }}/**/build/reports/jacoco/**/**.xml, | ||
${{ github.workspace }}/**/build/reports/jacoco/**/**.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
min-coverage-overall: 45 | ||
min-coverage-changed-files: 84 | ||
title: '# :lobster: `Coverage Report`' | ||
update-comment: true | ||
comment-type: 'both' | ||
pass-emoji: ':green_circle:' | ||
fail-emoji: ':red_circle:' | ||
continue-on-error: true | ||
debug-mode: true | ||
|
||
- name: Get the Coverage info | ||
run: | | ||
echo "Total coverage ${{ steps.jacoco.outputs.coverage-overall }}" | ||
echo "Changed Files coverage ${{ steps.jacoco.outputs.coverage-changed-files }}" |