-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
65 additions
and
15 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 |
---|---|---|
|
@@ -73,7 +73,7 @@ jobs: | |
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2.10.0 | ||
uses: gradle/gradle-build-action@v2.12.0 | ||
|
||
# Set environment variables | ||
- name: Export Properties | ||
|
@@ -122,7 +122,7 @@ jobs: | |
# Store already-built plugin as an artifact for downloading | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3.1.3 | ||
uses: actions/upload-artifact@v4.3.0 | ||
with: | ||
name: ${{ steps.artifact.outputs.filename }} | ||
path: ./build/distributions/content/*/* | ||
|
@@ -147,7 +147,7 @@ jobs: | |
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2.10.0 | ||
uses: gradle/gradle-build-action@v2.12.0 | ||
|
||
# Run tests | ||
- name: Run Tests | ||
|
@@ -156,14 +156,14 @@ jobs: | |
# Collect Tests Result of failed tests | ||
- name: Collect Tests Result | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v3.1.3 | ||
uses: actions/upload-artifact@v4.3.0 | ||
with: | ||
name: tests-result | ||
path: ${{ github.workspace }}/build/reports/tests | ||
|
||
# Upload Kover report to CodeCov | ||
- name: Upload Code Coverage Report | ||
uses: codecov/[email protected].4 | ||
uses: codecov/[email protected].5 | ||
with: | ||
files: ${{ github.workspace }}/build/reports/kover/xml/report.xml | ||
|
||
|
@@ -191,7 +191,7 @@ jobs: | |
|
||
# Run Qodana inspections | ||
- name: Qodana - Code Inspection | ||
uses: JetBrains/qodana-action@v2023.2.9 | ||
uses: JetBrains/qodana-action@v2023.3.1 | ||
with: | ||
cache-default-branch-only: true | ||
|
||
|
@@ -220,11 +220,11 @@ jobs: | |
|
||
# Setup Gradle | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2.10.0 | ||
uses: gradle/gradle-build-action@v2.12.0 | ||
|
||
# Cache Plugin Verifier IDEs | ||
- name: Setup Plugin Verifier IDEs Cache | ||
uses: actions/cache@v3.3.2 | ||
uses: actions/cache@v4.0.0 | ||
with: | ||
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides | ||
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }} | ||
|
@@ -236,7 +236,7 @@ jobs: | |
# Collect Plugin Verifier Result | ||
- name: Collect Plugin Verifier Result | ||
if: ${{ always() }} | ||
uses: actions/upload-artifact@v3.1.3 | ||
uses: actions/upload-artifact@v4.3.0 | ||
with: | ||
name: pluginVerifier-result | ||
path: ${{ github.workspace }}/build/reports/pluginVerifier | ||
|
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,44 @@ | ||
# Name of the workflow | ||
name: Git Flow | ||
|
||
# Defines the event that triggers the workflow | ||
on: | ||
push: | ||
branches: | ||
- 'feature/*' # Trigger for pushes to feature branches | ||
- 'bugfix/*' # Trigger for pushes to bugfix branches | ||
- 'release/*' # Trigger for pushes to release branches | ||
- 'hotfix/*' # Trigger for pushes to hotfix branches | ||
|
||
# Jobs are a set of steps that execute on the same runner | ||
jobs: | ||
create-pull-request: | ||
# Specifies the runner environment, using the latest Ubuntu | ||
runs-on: ubuntu-latest | ||
name: Create Pull Request | ||
permissions: write-all | ||
|
||
# Steps are individual tasks that run commands in a job | ||
steps: | ||
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it | ||
- name: Checkout Repository Code | ||
uses: actions/[email protected] | ||
|
||
# This step uses the Git Flow Action to create PRs based on branch types | ||
- name: Execute Git Flow Action | ||
uses: nekofar/git-flow-action@develop # Specifies the Git Flow Action to use and the branch | ||
with: | ||
# The GitHub Token for authentication with GitHub API | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
# The branch to target for release and hotfix PRs | ||
master-branch: 'master' | ||
# The branch to target for feature and bugfix PRs | ||
develop-branch: 'develop' | ||
# Prefix for feature branches | ||
feature-prefix: 'feature/' | ||
# Prefix for bugfix branches | ||
bugfix-prefix: 'bugfix/' | ||
# Prefix for release branches | ||
release-prefix: 'release/' | ||
# Prefix for hotfix branches | ||
hotfix-prefix: 'hotfix/' |
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
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
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