Skip to content

Commit 22b39cc

Browse files
Merge pull request #16 from ivanildobarauna-dev/hotfix/security-traceback-remove
[WORKFLOWS] Adding the correct trigger and permissions
2 parents 93b08b7 + 4b9371e commit 22b39cc

File tree

4 files changed

+23
-0
lines changed

4 files changed

+23
-0
lines changed

.github/workflows/packages-deploy.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ on:
44
push:
55
branches:
66
- main
7+
paths-ignore:
8+
- '**.md'
9+
- 'docs/**'
10+
- 'tests/**'
11+
- '.github/**'
12+
- 'README.md'
13+
- 'CHANGELOG.md'
14+
- 'LICENSE'
15+
- 'docker-compose.local.yaml'
716
workflow_dispatch:
817

918
env:

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
1820

1921
- name: Get latest release version
2022
id: get_version

.github/workflows/tests.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
name: Run backend tests
2+
permissions:
3+
contents: read
24

35
on:
46
pull_request:
57
branches: [ main ]
8+
paths-ignore:
9+
- '**.md'
10+
- 'docs/**'
11+
- '.github/**'
12+
- 'README.md'
13+
- 'CHANGELOG.md'
14+
- 'LICENSE'
15+
- 'docker-compose.local.yaml'
16+
- 'frontend/**'
17+
- 'docker-compose.prod.yaml'
618

719
jobs:
820
test:

0 commit comments

Comments
 (0)