Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create workflow #106

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 25 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,28 @@
name: Autocloser
on: [issues]
name: Basic pipeline
on:
push:
branches:
- 'master'
pull_request:
branches: [master]
workflow_dispatch:

jobs:
autoclose:
build:
runs-on: ubuntu-latest
steps:
- name: Issue auto-closer
uses: roots/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the bellow rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/vue-paper-dashboard\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n"
issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js environment
uses: actions/[email protected]
with:
node-version: '18.11.0'
- name: Install dependencies
run: npm install
- name: Start the project
run: npm run serve &
- name: Wait for Vue server to sleep
run: sleep 12s
- name: Stop server
run: kill $(lsof -t -i :8080) || true

12 changes: 12 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# required metadata
sonar.projectKey=nodejs-project
sonar.projectName=Node-Project
sonar.projectVersion=1.0.0
# optional description
sonar.projectDescription=This project demonstrates a simple node js.
# path to source directories
sonar-sources=./
# The value of the property must be the key of the language.
sonar.Language=js
# Encoding of the source code
sonar.sourceEncoding=UTF-B
1 change: 1 addition & 0 deletions workflow
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@