Skip to content

Commit

Permalink
Allow manually running GitHub Actions workflows and use consistent fi…
Browse files Browse the repository at this point in the history
…le extension (#2215)

* Rename deploy-gh-pages.yaml to deploy-gh-pages.yml
* Enable workflow_dispatch trigger to allow manually running
  • Loading branch information
sobolevn committed Jan 20, 2022
1 parent f91ab0d commit d9e63cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
@@ -1,6 +1,6 @@
name: Build

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
build:
Expand Down
Expand Up @@ -3,6 +3,7 @@ name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:

jobs:
deploy-to-pages:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
@@ -1,6 +1,6 @@
name: Lint

on: [push, pull_request]
on: [push, pull_request, workflow_dispatch]

jobs:
pre-commit:
Expand Down

0 comments on commit d9e63cc

Please sign in to comment.