GitHub Actions: removed on.pull_request.* to avoid duplicate execution or actions in PRs

This commit is contained in:
Karl Tauber
2022-11-19 11:28:06 +01:00
parent b515e8be04
commit 05240abfe0
2 changed files with 4 additions and 12 deletions

View File

@@ -1,4 +1,5 @@
# https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: CI name: CI
@@ -8,9 +9,6 @@ on:
- '*' - '*'
tags: tags:
- '[0-9]*' - '[0-9]*'
pull_request:
branches:
- '*'
jobs: jobs:
build: build:

View File

@@ -1,4 +1,5 @@
# https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: Native Libraries name: Native Libraries
@@ -12,13 +13,6 @@ on:
- 'flatlaf-natives/**' - 'flatlaf-natives/**'
- '.github/workflows/natives.yml' - '.github/workflows/natives.yml'
- 'gradle/wrapper/gradle-wrapper.properties' - 'gradle/wrapper/gradle-wrapper.properties'
pull_request:
branches:
- '*'
paths:
- 'flatlaf-natives/**'
- '.github/workflows/natives.yml'
- 'gradle/wrapper/gradle-wrapper.properties'
jobs: jobs:
Natives: Natives: