Skip to content

Commit

Permalink
GitHub Actions
Browse files Browse the repository at this point in the history
- rename workflows to be able to see which one run
- fix `paths` expression
  • Loading branch information
tschmidtb51 committed Jan 24, 2024
1 parent bf6370f commit 3d4fb0a
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/csaf_2.0_cpe.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: CPE Dictionary Test
name: CPE Dictionary Test (CSAF 2.0)

on: [push, pull_request]
paths:
- 'csaf_2.0/*'
on:
push:
paths:
- 'csaf_2.0/*'
pull_request:
paths:
- 'csaf_2.0/*'

jobs:
cpe-test:
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/csaf_2.0_filenames.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: CSAF Filenames Test
name: CSAF Filenames Test (CSAF 2.0)

on: [push, pull_request]
paths:
- 'csaf_2.0/*'
on:
push:
paths:
- 'csaf_2.0/*'
pull_request:
paths:
- 'csaf_2.0/*'

jobs:
filename-test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csaf_2.0_main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: JSON Schema Tests
name: JSON Schema Tests (CSAF 2.0)

on: [push, pull_request]
paths:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csaf_2.0_mandatory-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CSAF Mandatory Tests
name: CSAF Mandatory Tests (CSAF 2.0)

on: [push, pull_request]
paths:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/csaf_2.0_validator.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Validator Data Test
name: Validator Data Test (CSAF 2.0)

on: [push, pull_request]
paths:
Expand Down

0 comments on commit 3d4fb0a

Please sign in to comment.