Skip to content
Closed
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
35 changes: 35 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Closes {LINK TO GH ISSUE}


## Goal

A clear and concise description of the PR.

Use this section for review hints, explanations or discussion points/todos.


## Changes

- Summary of changes
- Reasoning
- Additional context


## Testing

Discuss the performed tests.


## Docs

Add any notes that help to document the feature/changes. Doesn't need to be your best writing, just a few words and/or code snippets.


## Checklist


- [ ] Documented what's new
- [ ] Added in-code documentation (wherever needed)
- [ ] Wrote tests for new components/features
- [ ] Ran the linter to ensure style guidelines were followed
- [ ] Created a demo
18 changes: 18 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v5
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
21 changes: 21 additions & 0 deletions .github/workflows/manual_actions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
workflow_dispatch:

jobs:
print-tag:
runs-on: ubuntu-latest
steps:
- name: Collect system information
run: |
echo "OS: ${{ runner.os }}"
echo "Runner name: ${{ runner.name }}"
echo "Runner architecture: ${{ runner.arch }}"
echo "OS Details"
uname -a
cat /etc/os-release
echo "1. CPU Information"
lscpu
echo "2. Memory Information"
free -h
echo "3. Disk Information"
df -h
Binary file added labs/images/lab_1_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/images/lab_1_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/images/lab_1_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/images/lab_8_0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/images/lab_8_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/images/lab_8_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added labs/images/lab_8_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions labs/submission1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Report on Lab 1

## Task 1 — SSH Commit Signature Verification

### 1.1 — Importance of Signed Commits

Signed commits have the following advantages:

* The authorship guarantee (a signed commit guarantees that it was created exactly by the person),
* Signing protects the code from unwanted changes via cryptography
* Rising the trust among authors and users

### 1.2 — Evidence of Successful SSH Key Setup and Signed Commit

![](../images/lab_1_0.png)
![](../images/lab_1_1.png)

### 1.3 — Importance in DevOps Workflows

* Trustworthy CI/CD pipeline
* Immutable history providing
* Compliance with rules of security in important spheres of development

## Task 2

![](../images/lab_1_2.png)

PR templates allow faster and standardized description of a contribution
Loading