Skip to content

Commit

Permalink
Add DSO commit check
Browse files Browse the repository at this point in the history
Signed-off-by: Artem Senichev <[email protected]>
  • Loading branch information
artemsen committed Jul 7, 2024
1 parent 33383a2 commit aade4c5
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .github/workflows/Check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,44 @@ name: Check
on:
push:
pull_request:
branches: [ "master" ]
# branches: [ "master" ]

jobs:
commit-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: commit-check/commit-check-action@v1
with:
message: true
branch: true
author-name: true
author-email: true
commit-signoff: true
dry-run: true
job-summary: true

check:

runs-on: ubuntu-latest

steps:
- name: Check out source code
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-depth: 0

# - name: Check commit
# - uses: commit-check/commit-check-action@v1
# with:
# message: false
# branch: false
# author-name: true
# author-email: true
# commit-signoff: true
# dry-run: false
# job-summary: true

- name: Get swayimg version
run: echo "VERSION=$(git describe --tags --long --always | sed 's/^v//;s/-/./')" >> $GITHUB_OUTPUT
id: version
Expand Down

0 comments on commit aade4c5

Please sign in to comment.