Skip to content

Commit

Permalink
Merge pull request #1 from jmckenna/main
Browse files Browse the repository at this point in the history
add initial license
  • Loading branch information
jmckenna authored Apr 23, 2024
2 parents 46e8ad4 + e31424c commit e2ee82a
Show file tree
Hide file tree
Showing 5 changed files with 101 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
20 changes: 20 additions & 0 deletions .github/workflows/check-crlf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# check for Windows CRLF in files
# homepage: https://github.com/marketplace/actions/check-crlf

name: Check CRLF

on: [push, pull_request]

jobs:
Check-CRLF:
name: verify that only LF linefeeds are used
runs-on: ubuntu-latest

steps:
- name: Checkout repository contents
uses: actions/checkout@v4

- name: Use action to check for CRLF endings
uses: erclu/[email protected]
with: # ignore directories containing *.csv & data
exclude: /testData/
46 changes: 46 additions & 0 deletions .github/workflows/irc_notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# send build notifications to the #odis IRC channel
# homepage: https://github.com/marketplace/actions/notify-irc

name: "IRC Push Notification"
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
irc_notify:
runs-on: ubuntu-latest
#if: github.repository == 'iodepo/odis-in'
steps:
- name: irc push
uses: rectalogic/notify-irc@v2
if: github.event_name == 'push'
with:
channel: "#odis"
server: "irc.libera.chat"
nickname: odis-github-notifier
message: |
${{ github.actor }} pushed ${{ github.event.ref }} ${{ github.event.compare }}
${{ join(github.event.commits.*.message) }}
- name: irc pull request
uses: rectalogic/notify-irc@v2
if: github.event_name == 'pull_request'
with:
channel: "#odis"
server: "irc.libera.chat"
nickname: odis-github-notifier
message: |
${{ github.actor }} opened PR ${{ github.event.pull_request.html_url }}
${{ github.event.pull_request.title }}
- name: irc tag created
uses: rectalogic/notify-irc@v2
if: github.event_name == 'create' && github.event.ref_type == 'tag'
with:
channel: "#odis"
server: "irc.libera.chat"
nickname: odis-github-notifier
message: |
${{ github.actor }} tagged ${{ github.repository }} ${{ github.event.ref }}
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Ocean InfoHub

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
# OIH-in-a-box
all in one installation of an OIH instance to be used by future partners (e.g. IOC Africa)
All in one installation of an [OIH instance](https://oceaninfohub.org/) to be used by future partners (e.g. IOC Africa)

## License

See [LICENSE.md](LICENSE.md)

0 comments on commit e2ee82a

Please sign in to comment.