Skip to content

Commit

Permalink
fix: release workflow does not triger other workflows
Browse files Browse the repository at this point in the history
- this should work as a workaround to trigger other workflows such as
  linting which are required to pass in order to merge into main

Signed-off-by: AtomicFS <[email protected]>
  • Loading branch information
AtomicFS committed Jun 14, 2024
1 parent 65aa6bd commit b8b8376
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
name: example
on:
pull_request:
pull_request_review:
types: ['submitted']
merge_group:
push:
branches: ['main']
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
name: go test
on:
pull_request:
pull_request_review:
types: ['submitted']
merge_group:
push:
branches: ['main']
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
name: Lint
on:
pull_request:
pull_request_review:
types: ['submitted']
merge_group:
push:
branches: ['main']
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
name: pytest
on:
pull_request:
pull_request_review:
types: ['submitted']
merge_group:
push:
branches: ['main']
Expand Down

0 comments on commit b8b8376

Please sign in to comment.