Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stephdl committed Jun 13, 2022
0 parents commit 386d06b
Show file tree
Hide file tree
Showing 45 changed files with 12,236 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build-apidoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Build API JSON Schema docs"

on:
push:
paths:
- '**/validate-input.json'
- '**/validate-output.json'
- '**/validator-definitions.json'

jobs:
build-apidoc:
uses: NethServer/ns8-github-actions/.github/workflows/build-apidoc.yml@v1
9 changes: 9 additions & 0 deletions .github/workflows/clean-apidoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: "Clean up API JSON Schema docs"

on:
delete:

jobs:
build-apidoc:
name: "Delete apidoc branch ${{ github.event.ref }}"
uses: NethServer/ns8-github-actions/.github/workflows/clean-apidoc.yml@v1
16 changes: 16 additions & 0 deletions .github/workflows/clean-registry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Clean up registry"

on:
delete:
workflow_dispatch:

jobs:
delete_images:
name: "Delete ghcr.io images ${{ github.event.ref }}"
runs-on: ubuntu-latest
environment: Registry
steps:
- uses: NethServer/ns8-github-actions/.github/actions/delete-image@v1
with:
images: "kickstart"
delete_image_token: ${{ secrets.IMAGES_CLEANUP_TOKEN }}
36 changes: 36 additions & 0 deletions .github/workflows/initialize-repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: "Repository initialization"

#
# TODO: it's safe to remove this workflow
#

on:
push:

jobs:
initrepo:
runs-on: ubuntu-latest
if: github.repository != 'NethServer/ns8-kickstart' && github.run_number == 1
steps:
- uses: actions/checkout@v2

- run: |
# Repository initialization
git config user.name "${{ github.event.pusher.name }}"
git config user.email "${{ github.event.pusher.email }}"
modulename=$(basename ${{ github.repository }} | sed 's/^ns8-//')
if [[ "${modulename}" != "kickstart" ]]; then
git mv imageroot/systemd/user/kickstart.service imageroot/systemd/user/${modulename}.service
git mv tests/kickstart.robot tests/${modulename}.robot
sed -i "s/kickstart/${modulename}/g" $(find * -type f)
git rm -f .github/workflows/initialize-repo.yml
fi
git commit -a -F - <<EOF
Repository initialization
- Enable automated workflows
- Replace "kickstart" occurrences with "${modulename}"
- Rename the service unit file
EOF
git push origin ${{ github.ref_name }}
echo "::notice title=Initialization completed::Now you can clone the repository."
12 changes: 12 additions & 0 deletions .github/workflows/publish-images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: "Publish images"

on:
push:

permissions:
packages: write

jobs:
publish-images:
if: github.run_number > 1
uses: NethServer/ns8-github-actions/.github/workflows/publish-branch.yml@v1
24 changes: 24 additions & 0 deletions .github/workflows/test-module.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test module

on:
workflow_dispatch:
inputs:
debug_shell:
description: "Debug shell"
required: true
type: boolean
workflow_run:
workflows: ["Publish images"]
types: [completed]

jobs:
module:
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.conclusion == '' }}
uses: NethServer/ns8-github-actions/.github/workflows/module-info.yml@main
run_tests:
needs: module
uses: NethServer/ns8-github-actions/.github/workflows/test-on-ubuntu-runner.yml@main
with:
args: "ghcr.io/${{needs.module.outputs.owner}}/${{needs.module.outputs.name}}:${{needs.module.outputs.tag}}"
repo_ref: ${{needs.module.outputs.sha}}
debug_shell: ${{ github.event.inputs.debug_shell == 'true' || false }}
104 changes: 104 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port
Loading

0 comments on commit 386d06b

Please sign in to comment.