Skip to content

Commit

Permalink
fic(actions): let actions run on dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Aug 13, 2024
1 parent 2be1b8d commit d18d2bc
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Checks
on: [pull_request, push]
on: [pull_request, push, workflow_dispatch]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
name: "CodeQL"

on:
push: null
pull_request: null
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "26 6 * * 6"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Type Check and Lint
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "Lint PR"

on:
workflow_dispatch:
pull_request_target:
types: [opened, synchronize, reopened, edited]

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Unit Tests
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/todo.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Check TODO
on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]
jobs:
todo:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-updates.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Version Update Auto Merge
on: pull_request
on: [pull_request, workflow_dispatch]

permissions:
contents: write
Expand Down

0 comments on commit d18d2bc

Please sign in to comment.