Skip to content

Commit

Permalink
Merge pull request #262 from werf/chore-ci-allow-workflows-manual-run
Browse files Browse the repository at this point in the history
chore(ci): allow workflows manual run
  • Loading branch information
ilya-lesikov authored Mar 17, 2023
2 parents 65c37cc + 52de5ee commit 731db47
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docs_cli_and_api_partials_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- '.github/workflows/docs_cli_and_api_partials_checker.yml'
- 'client/cmd/**'
- 'server/**'
workflow_dispatch:

jobs:
check:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
paths:
- '**/*.go'
workflow_dispatch:

jobs:
lint:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release_please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
workflow_dispatch:

jobs:
release-please:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ on:
- 'client/scripts/minio'
- '.github/workflows/tests.yml'
- '**/*.go'
- go.mod
schedule:
- cron: '0 8 * * *'
repository_dispatch:
types: [ tests ]
workflow_dispatch:

jobs:

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/trdl_publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- main
paths:
- "**/trdl_channels.yaml"
workflow_dispatch:

jobs:
publish:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/trdl_releaser.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Trdl releaser
on:
create:
workflow_dispatch:

jobs:
release:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/website_broken_links_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
paths:
- docs
workflow_dispatch:

jobs:
check_links:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/website_converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
paths:
- '.github/workflows/website_converge.yml'
- 'docs/**'
workflow_dispatch:

env:
WERF_REPO: "ghcr.io/${{ github.repository_owner }}/trdl"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/website_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Review website
on:
pull_request:
types: [labeled, synchronize]
workflow_dispatch:

env:
WERF_REPO: "ghcr.io/${{ github.repository_owner }}/trdl"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/website_review_dismiss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Review env Dismiss
on:
pull_request:
types: [closed, unlabeled]
workflow_dispatch:

env:
WERF_REPO: "ghcr.io/${{ github.repository_owner }}/trdl"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/website_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Test website
on:
pull_request:
types: [labeled, synchronize]
workflow_dispatch:

env:
WERF_REPO: "ghcr.io/${{ github.repository_owner }}/trdl"
Expand Down

0 comments on commit 731db47

Please sign in to comment.