Skip to content

Commit

Permalink
trigger only by push (#953)
Browse files Browse the repository at this point in the history
to avoid to merge develop automatically:
Checking out the ref
  /usr/bin/git checkout --progress --force refs/remotes/pull/950/merge
  Note: switching to 'refs/remotes/pull/950/merge'.
  
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in
this
  state without impacting any branches by switching back to a branch.
  
If you want to create a new branch to retain commits you create, you may
  do so (now or later) by using -c with the switch command. Example:
  
    git switch -c <new-branch-name>
  
  Or undo this operation with:
  
    git switch -
  
Turn off this advice by setting config variable advice.detachedHead to
false
  
HEAD is now at b59b11a Merge b234f61
into c5dde68
  • Loading branch information
a-zakir authored Oct 15, 2024
1 parent c5dde68 commit 04f0cbb
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 12 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build_centos7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ on:
push:
branches:
- develop
- dependabot/*
- feature/*
- features/*
- fix/*
- issue-*
- release/*
pull_request:
- doc/*
- dependabot/*
release:
types: [ created ]

Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/build_oracle8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ on:
push:
branches:
- develop
- dependabot/*
- feature/*
- features/*
- fix/*
- issue-*
- release/*
pull_request:
- doc/*
- dependabot/*
release:
types: [ created ]

Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/build_ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ on:
merge_group:
push:
branches:
- main
- develop
- dependabot/*
- feature/*
- features/*
- fix/*
- issue-*
- release/*
pull_request:
- doc/*
- dependabot/*
release:
types: [ created ]

Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ on:
merge_group:
push:
branches:
- main
- develop
- dependabot/*
- feature/*
- features/*
- fix/*
- issue-*
- release/*
pull_request:
- doc/*
- dependabot/*
release:
types: [ created ]

Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@ name: SonarCloud
on:
push:
branches:
- main
- develop
- feature/*
- features/*
- fix/*
- issue-*
- release/*
- doc/*
- dependabot/*
pull_request:

jobs:
sonarcloud:
Expand Down

0 comments on commit 04f0cbb

Please sign in to comment.