Skip to content

Commit 726621e

Browse files
fix: Correct config path
1 parent fc3b18a commit 726621e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
steps:
1111
- uses: act10ns/slack@v2
1212
with:
13-
config: .github/config/slack.yml
1413
status: starting
1514
message: Pull request has problems in initialising containers.
15+
config: .github/workflows/config/slack.yml
1616
if: failure()
1717
- uses: actions/checkout@v3 # Use to copy the files from current directory
1818
- name: Complexity
@@ -29,17 +29,17 @@ jobs:
2929
docker-compose -f scripts/docker_lintage/docker-compose.yaml run coverage
3030
- uses: act10ns/slack@v2
3131
with:
32-
config: .github/config/slack.yml
3332
status: ${{job.status}}
3433
message: Shame on ${{ github.event.pull_request.user.login }}! Your Code is not compliant with ${{ env.action_step }}.
3534
#channel: '#general'
35+
config: .github/workflows/config/slack.yml
3636
if: failure()
3737
- name: Unit Test
3838
run: |
3939
docker-compose -f scripts/docker_lintage/docker-compose.yaml run unittest
4040
- uses: act10ns/slack@v2
4141
with:
42-
config: .github/config/slack.yml
4342
status: ${{job.status}}
4443
steps: ${{toJson(steps)}}
44+
config: .github/workflows/config/slack.yml
4545
if: always()

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
with:
2828
status: done
2929
message: model successfully deployed!
30-
config: .github/config/slack.yml
30+
config: .github/workflows/config/slack.yml

0 commit comments

Comments
 (0)