From b53e40bf7fc4ff3ca412c61b6120ba5d876d4127 Mon Sep 17 00:00:00 2001 From: Vladimir Roncevic Date: Thu, 25 Jun 2020 21:10:06 +0200 Subject: [PATCH 1/4] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 38 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..055dd88 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,38 @@ +--- +name: Bug report +about: Create a report to help us improve +title: "[kernel_basic_system]" +labels: bug +assignees: vroncevic + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + - OS: [e.g. iOS] + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + - Device: [e.g. iPhone6] + - OS: [e.g. iOS8.1] + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..c0d6adf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: "[kernel_basic_system]" +labels: enhancement +assignees: vroncevic + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. From f48e22d06dd843fc4357dd9b24d4fdafd1b5f8fe Mon Sep 17 00:00:00 2001 From: Vladimir Roncevic Date: Thu, 25 Jun 2020 21:58:11 +0200 Subject: [PATCH 2/4] Create docker-checker.yml --- .github/workflows/docker-checker.yml | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/docker-checker.yml diff --git a/.github/workflows/docker-checker.yml b/.github/workflows/docker-checker.yml new file mode 100644 index 0000000..d6783e2 --- /dev/null +++ b/.github/workflows/docker-checker.yml @@ -0,0 +1,33 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project. From 3b2616c2dcc5d88ba75e3e54d73fb44f7284f0b8 Mon Sep 17 00:00:00 2001 From: Vladimir Roncevic Date: Fri, 26 Jun 2020 00:09:10 +0200 Subject: [PATCH 3/4] Create c-checker.yml --- .github/workflows/c-checker.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/c-checker.yml diff --git a/.github/workflows/c-checker.yml b/.github/workflows/c-checker.yml new file mode 100644 index 0000000..6eb0608 --- /dev/null +++ b/.github/workflows/c-checker.yml @@ -0,0 +1,23 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + #steps: + #- uses: actions/checkout@v2 + #- name: configure + # run: ./configure + #- name: make + # run: make + #- name: make check + # run: make check + #- name: make distcheck + # run: make distcheck From 57996a647657b8450cd8d051cdd6795254b13658 Mon Sep 17 00:00:00 2001 From: Vladimir Roncevic Date: Fri, 18 Sep 2020 00:06:38 +0200 Subject: [PATCH 4/4] Set theme jekyll-theme-hacker --- _config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config.yml b/_config.yml index c419263..fc24e7a 100644 --- a/_config.yml +++ b/_config.yml @@ -1 +1 @@ -theme: jekyll-theme-cayman \ No newline at end of file +theme: jekyll-theme-hacker \ No newline at end of file