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 e8915d9
Show file tree
Hide file tree
Showing 11 changed files with 30,920 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: test setup action

on:
pull_request: {}

jobs:
lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: ./actions/setup
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
12 changes: 12 additions & 0 deletions actions/setup/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: 'Setup Grizzly'
description: 'Setup Grizzly - A utility for managing Grafana resources'

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

inputs:
version:
description: 'Version of grizzly to install'
required: true
default: 'latest'
Loading

0 comments on commit e8915d9

Please sign in to comment.