General fix and consistency changes (#428)
authorKrishan <33421343+kfiven@users.noreply.github.com>
Wed, 23 Mar 2022 14:10:39 +0000 (19:40 +0530)
committerGitHub <noreply@github.com>
Wed, 23 Mar 2022 14:10:39 +0000 (19:40 +0530)
.github/ISSUE_TEMPLATE/bug_report.yml
.github/ISSUE_TEMPLATE/feature_request.yml
.github/workflows/build-pull-request.yml
.github/workflows/deploy-pull-request.yml
.github/workflows/netlify-dev.yaml
.github/workflows/prod-deploy.yaml
LICENSE

index 517d390e75013fa169e2e44c32f56ac8f9c7027a..f3f6ef3dbd99d4af13c4f8caa0dc1a4dfe5f28d6 100644 (file)
@@ -1,5 +1,4 @@
 name: 🐞 Bug Report
-title: '[bug] '
 description: Report a bug
 labels: 'type: bug'
 
index d45af2005eb047f91e8165cc000604e98ca896f5..7026f9578a8a6e2250849d46f535c0759b1805b8 100644 (file)
@@ -1,5 +1,4 @@
 name: 💡 Feature Request
-title: '[feat] '
 description: Suggest an idea
 labels: 'type: feature'
 
index dbc72223951381f940c1d5e234b73e2295879ebd..71c785119f607bcdec86406d1ae1540414f6a192 100644 (file)
@@ -10,7 +10,7 @@ jobs:
     env:
       PR_NUMBER: ${{github.event.number}}
     steps:
-      - name: Check out the repo
+      - name: Checkout repository
         uses: actions/checkout@v3.0.0
       - name: Build app
         run: npm ci && npm run build
index c30233eb5c84cde8dc9c09780c58d7ffedb2d4f1..6894bad38efe4e8ef211aedb68801fc381565ed2 100644 (file)
@@ -13,7 +13,7 @@ jobs:
       # There's a 'download artifact' action but it hasn't been updated for the
       # workflow_run action (https://github.com/actions/download-artifact/issues/60)
       # so instead we get this mess:
-      - name: 'Download artifact'
+      - name: Download artifact
         uses: actions/github-script@v6.0.0
         with:
           script: |
@@ -46,7 +46,7 @@ jobs:
             fs.writeFileSync('${{github.workspace}}/pr.json.zip', Buffer.from(download.data));
       - name: Extract Artifacts
         run: unzip -d dist previewbuild.zip && rm previewbuild.zip && unzip pr.json.zip && rm pr.json.zip
-      - name: 'Read PR Info'
+      - name: Read PR Info
         id: readctx
         uses: actions/github-script@v6.0.0
         with:
index aa9dd410f4b5b247ed03e55d6fe61111fb2103a0..d1100ebf8356c9692c74eaab0b3be8994c5e7746 100644 (file)
@@ -6,13 +6,15 @@ on:
        - dev
 
 jobs:
-  deploy:
+  deploy-to-netlify:
     name: 'Deploy'
     runs-on: ubuntu-latest
 
-    steps:
-      - uses: actions/checkout@v3.0.0
-      - uses: jsmrcaga/action-netlify-deploy@v1.7.2
+    steps:      
+      - name: Checkout repository
+        uses: actions/checkout@v3.0.0
+      - name: Build and deploy to Netlify
+        uses: jsmrcaga/action-netlify-deploy@v1.7.2
         with:
           install_command: "npm ci"
           NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
index 91e144973afa5e12ebc6f46792e9af178a822d66..ff0c6ab6eeed1a2b72030b9aa7ad8363723ba928 100644 (file)
@@ -9,7 +9,7 @@ jobs:
     name: 'Deploy to Netlify'
     runs-on: ubuntu-latest
     steps:
-      - name: Check out the repo
+      - name: Checkout repository
         uses: actions/checkout@v3.0.0
       - name: Build and deploy to Netlify
         uses: jsmrcaga/action-netlify-deploy@v1.7.2
@@ -26,7 +26,7 @@ jobs:
       - name: Create tar.gz
         run: tar -czvf cinny-${{ steps.vars.outputs.tag }}.tar.gz dist
       - name: Upload tagged release
-        uses: softprops/action-gh-release@v1
+        uses: softprops/action-gh-release@v0.1.14
         with:
           files: |
             cinny-${{ steps.vars.outputs.tag }}.tar.gz
@@ -35,7 +35,7 @@ jobs:
     name: Push Docker image to Docker Hub
     runs-on: ubuntu-latest
     steps:
-      - name: Check out the repo
+      - name: Checkout repository
         uses: actions/checkout@v3.0.0
       - name: Login to Docker Hub
         uses: docker/login-action@v1.14.1
diff --git a/LICENSE b/LICENSE
index 42d4c6cae4ed366e8fe9cb8c874953c9cdf24644..fc638515cb261641b23fe84cdecda4e85cca7e11 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2021 Ajay Bura (ajbura) and other contributors
+Copyright (c) 2021 Ajay Bura (ajbura) and contributors
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal