Skip to content

Commit

Permalink
deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
yesoreyeram committed Dec 14, 2023
1 parent be4f2fc commit 05d1e25
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 29 deletions.
31 changes: 3 additions & 28 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,45 +1,20 @@
name: Build & Publish

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn cache
uses: actions/cache@v2
id: cache-yarn-cache
- name: Setup Node
uses: actions/setup-node@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ matrix.node-version }}-nodemodules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-nodemodules-
node-version: 16.x
- name: Install dependencies
run: yarn install --frozen-lockfile;
if: |
steps.cache-yarn-cache.outputs.cache-hit != 'true' ||
steps.cache-node-modules.outputs.cache-hit != 'true'
- name: Test
run: |
yarn test;
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

| Version | Changes |
| ------- | -------------------------------------------------- |
| 0.3.0 | Plugin deprecated |
| 0.2.1 | Bug fixes (Thanks @koszti) |
| | Replace theme by variable (Thanks @koszti) |
| 0.2.0 | **Plugin Signed** |
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# :warning: DEPRECATION

Grafana Boom Theme Panel was created during early Grafana days to workaround theme support for Grafana dashbaords. Given that Grafana have native themes now, It is time to deprecate the plugin.

Thank you community for the support. This plugin will be removed/archived from the grafana plugin catalog. Existing installations should continue to work. If that doesn't work, reach out to [community.grafana.com](https://community.grafana.com) for support. You can also download old binaries from [releases page](https://github.com/yesoreyeram/yesoreyeram-boomtheme-panel/releases).

# Boom Theme Panel

[![Build & Publish](https://github.com/yesoreyeram/yesoreyeram-boomtheme-panel/workflows/Build%20&%20Publish/badge.svg)](https://github.com/yesoreyeram/yesoreyeram-boomtheme-panel/actions?query=workflow%3A%22Build+%26+Publish%22)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yesoreyeram-boomtheme-panel",
"version": "0.2.1",
"version": "0.3.0",
"description": "Themes for Grafana",
"main": "dist/module.js",
"author": "Sriramajeyam Sugumaran",
Expand Down

0 comments on commit 05d1e25

Please sign in to comment.