Skip to content

Commit

Permalink
Merge pull request #189 from callng/master
Browse files Browse the repository at this point in the history
Don't trigger workflows too often
  • Loading branch information
owo233 authored Aug 5, 2023
2 parents 64044a9 + b9bd2f1 commit 488c091
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ on:
push:
branches:
- 'master'
- 'dev'
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
- v[0-9]+.*

workflow_dispatch:

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,16 @@ name: Java CI with Gradle

on:
push:
paths-ignore:
- ".github/**"
- ".run/**"
- "**/*.md"
branches: [ "master" ]
pull_request:
paths-ignore:
- ".github/**"
- ".run/**"
- "**/*.md"
branches: [ "master" ]

permissions:
Expand Down

0 comments on commit 488c091

Please sign in to comment.