Skip to content

Commit

Permalink
Fix contact email address (#50)
Browse files Browse the repository at this point in the history
* Update contact email address

* Update broken links checker
  • Loading branch information
kaklakariada authored Jul 11, 2022
1 parent 4079f10 commit 176dc8d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/broken_links_checker.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
name: Broken Links Checker

on:
schedule:
- cron: "0 5 * * 0"
push:
branches:
- main
schedule:
- cron: "0 5 * * *"
pull_request:

jobs:
linkChecker:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- name: Configure broken links checker
run: |
mkdir -p ./target
echo '{ "aliveStatusCodes": [429, 200] }' > ./target/broken_links_checker.json
echo '{ "aliveStatusCodes": [429, 200], "ignorePatterns": [{"pattern": "^https?://(www.)?opensource.org"}] }' > ./target/broken_links_checker.json
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
Expand Down
2 changes: 1 addition & 1 deletion resources/metabase-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ info:
description: Allows Metabase to connect to Exasol databases.
contact-info:
name: Exasol AG
address: support@exasol.com
address: service@exasol.com
dependencies:
- class: com.exasol.jdbc.EXADriver
message: >
Expand Down

0 comments on commit 176dc8d

Please sign in to comment.