Skip to content

Commit

Permalink
Merge branch 'update-workflows' into kayma/init
Browse files Browse the repository at this point in the history
  • Loading branch information
kayman-mk committed May 11, 2024
2 parents 71ae08c + 1c31b46 commit a048ae6
Show file tree
Hide file tree
Showing 11 changed files with 138 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Build Java PR

# yamllint disable-line rule:truthy
on:
pull_request:

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/maven_java_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Lint files

# yamllint disable-line rule:truthy
on:
pull_request:

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_linter_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
17 changes: 17 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: "Pull Request"

# yamllint disable-line rule:truthy
on:
pull_request_target:
types:
- opened
- edited
- synchronize
branches-ignore:
- "release-please--branches--*"

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_pull_request_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Release

# yamllint disable-line rule:truthy
on:
push:
branches:
- main

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/maven_release_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/release_dry_run.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Release Test

# yamllint disable-line rule:truthy
on:
push:
branches:
- release-dry-run

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/maven_release_dry_run_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/renovate_auto_approve.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Approve all Renovate PRs automatically

# yamllint disable-line rule:truthy
on:
pull_request_target

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_renovate_auto_approve_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/slash_ops_command_help.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: Execute ChatOps command

# yamllint disable-line rule:truthy
on:
repository_dispatch:
types:
- help-command

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_slash_ops_command_help_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/slash_ops_comment_dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: PR commented

# yamllint disable-line rule:truthy
on:
issue_comment:
types:
- created

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_slash_ops_comment_dispatch_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: "Check spelling"

# yamllint disable-line rule:truthy
on:
pull_request:

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_spelling_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
12 changes: 12 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: "Close stale issues and PRs"

# yamllint disable-line rule:truthy
on:
schedule:
- cron: "25 2 * * *"

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_stale_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit
13 changes: 13 additions & 0 deletions .github/workflows/welcome_message.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: PR opened

# yamllint disable-line rule:truthy
on:
pull_request_target:
types:
- opened

jobs:
default:
uses: Hapag-Lloyd/Workflow-Templates/.github/workflows/default_welcome_message_callable.yml@c34ea75ff9e52d92a9433a19dd9fcd473bac2eee
secrets: inherit

0 comments on commit a048ae6

Please sign in to comment.