mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
293988b5b6
* ci(github): update actions that use node v12 See https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ * update actions for node 12 -> node 16 * update actions for node 12 -> node 16
18 lines
385 B
YAML
18 lines
385 B
YAML
name: Lint PR
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- edited
|
|
- synchronize
|
|
|
|
jobs:
|
|
lint-pr:
|
|
name: Validate PR title against Conventional Commits
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: amannn/action-semantic-pull-request@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|