Skip to content

Commit

Permalink
setup GH action WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
K-Phoen committed Mar 12, 2024
1 parent 3070541 commit f20ae3b
Show file tree
Hide file tree
Showing 11 changed files with 30,922 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: test setup action

on:
pull_request: {}

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: ./actions/setup@kgz/github-action
with:
version: v0.4.0

- name: Lint
run: grr --version
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
*.orig
*.swp
.idea
/actions/*/node_modules
16 changes: 16 additions & 0 deletions actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'Setup Grizzly'
description: 'Setup Grizzly - A utility for managing Grafana resources'

runs:
using: 'node20'
main: 'dist/index.js'

inputs:
who-to-greet:
description: 'Who to greet'
required: true
default: 'World'

outputs:
time:
description: 'The time we greeted you'
Loading

0 comments on commit f20ae3b

Please sign in to comment.