Skip to content

Commit

Permalink
Merge pull request #557 from mk3008/set-github-acctions-timeout
Browse files Browse the repository at this point in the history
Added timeout setting to Github Actions
  • Loading branch information
mk3008 authored Oct 30, 2024
2 parents 5aa07d5 + 919e7e3 commit 41664e6
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy_nuget.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish - Nuget
name: 'Publish - Nuget Carbunql'

on:
push:
Expand All @@ -8,6 +8,8 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v1

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy_nuget_dapper.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish - Nuget
name: 'Publish - Nuget Carbunql.Dapper'

on:
push:
Expand All @@ -8,6 +8,8 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v1

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy_nuget_postgres.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish - Nuget
name: 'Publish - Nuget Carbunql.Postgres'

on:
push:
Expand All @@ -8,6 +8,8 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v1

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/deploy_nuget_typesafe.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish - Nuget
name: 'Publish - Nuget Carbunql.TypeSafe'

on:
push:
Expand All @@ -8,6 +8,8 @@ on:
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- uses: actions/checkout@v1

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: 'Publish application'
name: 'Publish Github Pages'
on: push

jobs:
build:
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
timeout-minutes: 10

env:
PROJECT_FILE: CarbunqlWeb.csproj
Expand Down

0 comments on commit 41664e6

Please sign in to comment.