Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
Added manual trigger to every GitHub Actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianLeChat committed May 3, 2024
1 parent 9e6e03b commit a1cf027
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: CodeQL

on: workflow_call
on:
workflow_call:
workflow_dispatch:

jobs:
analyze:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Dependency Review

on: pull_request
on:
pull_request:
workflow_dispatch:

permissions:
contents: read
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches: [ master ]
schedule:
- cron: 0 6 * * 1
workflow_dispatch:

jobs:
codeql:
Expand All @@ -21,7 +22,7 @@ jobs:
build-image:
if: ${{ github.event_name != 'schedule' }}}
runs-on: ubuntu-latest
needs: [codeql, playwright, eslint]
needs: [ codeql, playwright, eslint ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: ESLint

on: workflow_call
on:
workflow_call:
workflow_dispatch:

jobs:
eslint:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Playwright Tests

on: workflow_call
on:
workflow_call:
workflow_dispatch:

jobs:
test:
Expand Down

0 comments on commit a1cf027

Please sign in to comment.